X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=rollup.config.mjs;h=d88f9734de2f431f89c2a79ccc5038b88ee17f98;hb=8660b972697e465abf1c6e79d8a408f8d88d6c72;hp=017ca1b9bee2ea0a1ee01ec6939248a7a23f0a3a;hpb=fc3e65861bc1939ae047ee1e8e91a1ce577035f4;p=poolifier.git diff --git a/rollup.config.mjs b/rollup.config.mjs index 017ca1b9..d88f9734 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -1,3 +1,4 @@ +import { cpus } from 'node:os' import terser from '@rollup/plugin-terser' import typescript from '@rollup/plugin-typescript' import analyze from 'rollup-plugin-analyzer' @@ -5,33 +6,41 @@ 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 +const isAnalyzeBuild = process.env.ANALYZE +const isDocumentationBuild = process.env.DOCUMENTATION + +const maxWorkers = cpus().length / 2 export default { input: 'src/index.ts', strictDeprecations: true, output: [ { - ...(isDevelopmentBuild ? { dir: 'lib' } : { file: 'lib/index.js' }), format: 'cjs', - sourcemap: !!isDevelopmentBuild, ...(isDevelopmentBuild && { + dir: 'lib', + sourcemap: true, preserveModules: true, preserveModulesRoot: 'src' }), - ...(!isDevelopmentBuild && { plugins: [terser({ maxWorkers: 2 })] }) + ...(!isDevelopmentBuild && { + file: 'lib/index.js', + plugins: [terser({ maxWorkers })] + }) }, { - ...(isDevelopmentBuild ? { dir: 'lib' } : { file: 'lib/index.mjs' }), format: 'esm', - sourcemap: !!isDevelopmentBuild, ...(isDevelopmentBuild && { + dir: 'lib', + sourcemap: true, entryFileNames: '[name].mjs', preserveModules: true, preserveModulesRoot: 'src' }), - ...(!isDevelopmentBuild && { plugins: [terser({ maxWorkers: 2 })] }) + ...(!isDevelopmentBuild && { + file: 'lib/index.mjs', + plugins: [terser({ maxWorkers })] + }) } ], external: [ @@ -39,7 +48,9 @@ export default { 'node:cluster', 'node:crypto', 'node:events', + 'node:fs', 'node:os', + 'node:perf_hooks', 'node:worker_threads' ], plugins: [ @@ -51,7 +62,7 @@ export default { del({ targets: ['lib/*'] }), - isAnalyze && analyze(), - isDocumentation && command('pnpm run typedoc') + isAnalyzeBuild && analyze(), + isDocumentationBuild && command('pnpm typedoc') ] }