X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=rollup.config.mjs;h=7454ef722b2fa32c8987187ec7fb12b5faeb0602;hb=1ab50fe5ad0b27a13a48047f9414d4138d43a5cd;hp=d35b8c42a00cea7e12e5eaf36f5d1733d048a374;hpb=7977150f9030ac200bd87f2f9f4752fa4de14581;p=poolifier.git diff --git a/rollup.config.mjs b/rollup.config.mjs index d35b8c42..7454ef72 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -1,26 +1,66 @@ -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 command from 'rollup-plugin-command' import del from 'rollup-plugin-delete' 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', + 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: [ typescript({ tsconfig: isDevelopmentBuild ? 'tsconfig.development.json' - : 'tsconfig.json' + : 'tsconfig.production.json' }), del({ - targets: 'lib/*' - }) + targets: ['lib/*'] + }), + isAnalyzeBuild && analyze(), + isDocumentationBuild && command('pnpm typedoc') ] }