X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=rollup.config.mjs;h=1410f161af83887ede02a8f98eb6bdcec7d35738;hb=c5d47229f35869b56a271612ef3fde64dd31c884;hp=bac8f614a5524bd3983969c29ef1d4b36f6fb202;hpb=f41629749a66b8e07d8f2fd6c5616c2abc625b35;p=poolifier.git diff --git a/rollup.config.mjs b/rollup.config.mjs index bac8f614..1410f161 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -1,31 +1,67 @@ -import typescript from 'rollup-plugin-typescript2' +import { cpus } from 'node:os' +import terser from '@rollup/plugin-terser' +import typescript from '@rollup/plugin-typescript' import analyze from 'rollup-plugin-analyzer' -import { terser } from 'rollup-plugin-terser' +import command from 'rollup-plugin-command' import del from 'rollup-plugin-delete' const isDevelopmentBuild = process.env.BUILD === 'development' -const isAnalyze = process.env.ANALYZE +const isAnalyzeBuild = process.env.ANALYZE +const isDocumentationBuild = process.env.DOCUMENTATION + +const maxWorkers = cpus().length / 2 export default { input: 'src/index.ts', - output: { - ...(isDevelopmentBuild ? { dir: 'lib' } : { file: 'lib/index.js' }), - format: 'cjs', - sourcemap: !!isDevelopmentBuild, - ...(isDevelopmentBuild && { preserveModules: true }), - ...(isDevelopmentBuild && { preserveModulesRoot: 'src' }), - ...(!isDevelopmentBuild && { plugins: [terser({ numWorkers: 2 })] }) - }, - external: ['async_hooks', 'cluster', 'events', 'worker_threads'], + strictDeprecations: true, + output: [ + { + format: 'cjs', + ...(isDevelopmentBuild && { + dir: 'lib', + sourcemap: true, + preserveModules: true, + preserveModulesRoot: 'src' + }), + ...(!isDevelopmentBuild && { + file: 'lib/index.js', + plugins: [terser({ maxWorkers })] + }) + }, + { + format: 'esm', + ...(isDevelopmentBuild && { + dir: 'lib', + sourcemap: true, + entryFileNames: '[name].mjs', + preserveModules: true, + preserveModulesRoot: 'src' + }), + ...(!isDevelopmentBuild && { + file: 'lib/index.mjs', + plugins: [terser({ maxWorkers })] + }) + } + ], + external: [ + 'node:async_hooks', + 'node:cluster', + 'node:crypto', + 'node:events', + 'node:os', + 'node:perf_hooks', + 'node:worker_threads' + ], plugins: [ typescript({ tsconfig: isDevelopmentBuild ? 'tsconfig.development.json' - : 'tsconfig.json' + : 'tsconfig.production.json' }), del({ targets: ['lib/*'] }), - isAnalyze && analyze() + isAnalyzeBuild && analyze(), + isDocumentationBuild && command('pnpm typedoc') ] }