X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=rollup.config.mjs;h=7454ef722b2fa32c8987187ec7fb12b5faeb0602;hb=dab8c377b70fc962ec217f2aeb719842f9f94cd6;hp=bf1685605be7cac3593cf1c7561e4e0ce93216bd;hpb=eae1fc25568e5d8e12f5e9fb07306a27da70d349;p=poolifier.git diff --git a/rollup.config.mjs b/rollup.config.mjs index bf168560..7454ef72 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -1,37 +1,66 @@ +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 istanbul from 'rollup-plugin-istanbul' -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', '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:worker_threads' + ], plugins: [ - ts({ + typescript({ tsconfig: isDevelopmentBuild ? 'tsconfig.development.json' - : 'tsconfig.json', - browserslist: false + : 'tsconfig.production.json' }), - isDevelopmentBuild && istanbul(), del({ targets: ['lib/*'] }), - isAnalyze && analyze(), - isDocumentation && command('npm run typedoc') + isAnalyzeBuild && analyze(), + isDocumentationBuild && command('pnpm typedoc') ] }