chore: v2.4.10
[poolifier.git] / rollup.config.mjs
index d365a3e43eb47ec4666b093e113984d1357c4102..017ca1b9bee2ea0a1ee01ec6939248a7a23f0a3a 100644 (file)
@@ -34,7 +34,14 @@ export default {
       ...(!isDevelopmentBuild && { plugins: [terser({ maxWorkers: 2 })] })
     }
   ],
-  external: ['async_hooks', 'cluster', 'events', 'os', 'worker_threads'],
+  external: [
+    'node:async_hooks',
+    'node:cluster',
+    'node:crypto',
+    'node:events',
+    'node:os',
+    'node:worker_threads'
+  ],
   plugins: [
     typescript({
       tsconfig: isDevelopmentBuild
@@ -45,6 +52,6 @@ export default {
       targets: ['lib/*']
     }),
     isAnalyze && analyze(),
-    isDocumentation && command('npm run typedoc')
+    isDocumentation && command('pnpm run typedoc')
   ]
 }