X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=rollup.config.mjs;h=0d5964e544f2ff89ed258e88e9500301ce820a66;hb=de037b034ea2cbc5530d45dd24685fde95a66155;hp=9b9aa8a76fadb59dba51accf10fd2ed7930f8caf;hpb=bb8ed27c1ef5cb7106ffec517871cc0204c52f2a;p=poolifier.git diff --git a/rollup.config.mjs b/rollup.config.mjs index 9b9aa8a7..0d5964e5 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -1,3 +1,4 @@ +import os from 'os' import terser from '@rollup/plugin-terser' import typescript from '@rollup/plugin-typescript' import analyze from 'rollup-plugin-analyzer' @@ -5,33 +6,41 @@ import command from 'rollup-plugin-command' import del from 'rollup-plugin-delete' 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 = os.cpus().length / 2 export default { input: 'src/index.ts', strictDeprecations: true, output: [ { - ...(isDevelopmentBuild ? { dir: 'lib' } : { file: 'lib/index.js' }), format: 'cjs', sourcemap: !!isDevelopmentBuild, ...(isDevelopmentBuild && { + dir: 'lib', preserveModules: true, preserveModulesRoot: 'src' }), - ...(!isDevelopmentBuild && { plugins: [terser({ maxWorkers: 2 })] }) + ...(!isDevelopmentBuild && { + file: 'lib/index.js', + plugins: [terser({ maxWorkers })] + }) }, { - ...(isDevelopmentBuild ? { dir: 'lib' } : { file: 'lib/index.mjs' }), format: 'esm', sourcemap: !!isDevelopmentBuild, ...(isDevelopmentBuild && { + dir: 'lib', entryFileNames: '[name].mjs', preserveModules: true, preserveModulesRoot: 'src' }), - ...(!isDevelopmentBuild && { plugins: [terser({ maxWorkers: 2 })] }) + ...(!isDevelopmentBuild && { + file: 'lib/index.mjs', + plugins: [terser({ maxWorkers })] + }) } ], external: [ @@ -51,7 +60,7 @@ export default { del({ targets: ['lib/*'] }), - isAnalyze && analyze(), - isDocumentation && command('pnpm typedoc') + isAnalyzeBuild && analyze(), + isDocumentationBuild && command('pnpm typedoc') ] }