X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=rollup.config.mjs;h=b5c0b285b77b8daa31ab63e4cd19f5152e688825;hb=0aa458de579cfd6cf9000458f0d40bb54fa0de46;hp=7c274b1a72dd97b8f5beb243ff434d1ba84ff455;hpb=27e8333f7d05af6df11681d1f97ccbaf9d59fc58;p=poolifier.git diff --git a/rollup.config.mjs b/rollup.config.mjs index 7c274b1a..b5c0b285 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -1,35 +1,67 @@ +import { cpus } from 'node:os' +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' -import { terser } from 'rollup-plugin-terser' -import ts from 'rollup-plugin-ts' 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', - 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', 'os', 'worker_threads'], + strictDeprecations: true, + output: [ + { + format: 'cjs', + sourcemap: !!isDevelopmentBuild, + ...(isDevelopmentBuild && { + dir: 'lib', + preserveModules: true, + preserveModulesRoot: 'src' + }), + ...(!isDevelopmentBuild && { + file: 'lib/index.js', + plugins: [terser({ maxWorkers })] + }) + }, + { + format: 'esm', + sourcemap: !!isDevelopmentBuild, + ...(isDevelopmentBuild && { + dir: 'lib', + 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: [ - ts({ + typescript({ tsconfig: isDevelopmentBuild ? 'tsconfig.development.json' - : 'tsconfig.json', - browserslist: false + : 'tsconfig.production.json' }), del({ targets: ['lib/*'] }), - isAnalyze && analyze(), - isDocumentation && command('npm run typedoc') + isAnalyzeBuild && analyze(), + isDocumentationBuild && command('pnpm typedoc') ] }