Generate documentation
[poolifier.git] / rollup.config.mjs
index d35b8c42a00cea7e12e5eaf36f5d1733d048a374..e1bdac21fe03b621fa5b4e81d2c73b3e2ef5be52 100644 (file)
@@ -1,26 +1,34 @@
-import typescript from 'rollup-plugin-typescript2'
+import terser from '@rollup/plugin-terser'
+import typescript from '@rollup/plugin-typescript'
+import analyze from 'rollup-plugin-analyzer'
+import command from 'rollup-plugin-command'
 import del from 'rollup-plugin-delete'
 
 const isDevelopmentBuild = process.env.BUILD === 'development'
+const isAnalyze = process.env.ANALYZE
+const isDocumentation = process.env.DOCUMENTATION
 
 export default {
   input: 'src/index.ts',
   output: {
-    dir: 'lib',
+    ...(isDevelopmentBuild ? { dir: 'lib' } : { file: 'lib/index.js' }),
     format: 'cjs',
     sourcemap: !!isDevelopmentBuild,
-    preserveModules: true,
-    preserveModulesRoot: 'src'
+    ...(isDevelopmentBuild && { preserveModules: true }),
+    ...(isDevelopmentBuild && { preserveModulesRoot: 'src' }),
+    ...(!isDevelopmentBuild && { plugins: [terser({ maxWorkers: 2 })] })
   },
-  external: ['async_hooks', 'cluster', 'events', 'worker_threads'],
+  external: ['async_hooks', 'cluster', 'events', 'os', 'worker_threads'],
   plugins: [
     typescript({
       tsconfig: isDevelopmentBuild
         ? 'tsconfig.development.json'
-        : 'tsconfig.json'
+        : 'tsconfig.production.json'
     }),
     del({
-      targets: 'lib/*'
-    })
+      targets: ['lib/*']
+    }),
+    isAnalyze && analyze(),
+    isDocumentation && command('npm run typedoc')
   ]
 }