X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=rollup.config.mjs;h=1410f161af83887ede02a8f98eb6bdcec7d35738;hb=refs%2Ftags%2Fv2.6.9;hp=3dad3c3eb93ecd7880a005faa5850e353f6f5631;hpb=660940b0fcdbafb80d3c01684b668f55980bfa67;p=poolifier.git diff --git a/rollup.config.mjs b/rollup.config.mjs index 3dad3c3e..1410f161 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -1,26 +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 ts from '@wessberg/rollup-plugin-ts' const isDevelopmentBuild = process.env.BUILD === 'development' +const isAnalyzeBuild = process.env.ANALYZE +const isDocumentationBuild = process.env.DOCUMENTATION + +const maxWorkers = cpus().length / 2 export default { input: 'src/index.ts', - output: { - dir: 'lib', - format: 'cjs', - sourcemap: !!isDevelopmentBuild, - preserveModules: true, - preserveModulesRoot: 'src' - }, - 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: [ - ts({ + typescript({ tsconfig: isDevelopmentBuild ? 'tsconfig.development.json' - : 'tsconfig.json' + : 'tsconfig.production.json' }), del({ - targets: 'lib/*' - }) + targets: ['lib/*'] + }), + isAnalyzeBuild && analyze(), + isDocumentationBuild && command('pnpm typedoc') ] }