X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=rollup.config.mjs;h=bac8f614a5524bd3983969c29ef1d4b36f6fb202;hb=0e19141a4c860c96cde0eac21023cef79e6b22f5;hp=3dad3c3eb93ecd7880a005faa5850e353f6f5631;hpb=660940b0fcdbafb80d3c01684b668f55980bfa67;p=poolifier.git diff --git a/rollup.config.mjs b/rollup.config.mjs index 3dad3c3e..bac8f614 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -1,26 +1,31 @@ +import typescript from 'rollup-plugin-typescript2' +import analyze from 'rollup-plugin-analyzer' +import { terser } from 'rollup-plugin-terser' import del from 'rollup-plugin-delete' -import ts from '@wessberg/rollup-plugin-ts' const isDevelopmentBuild = process.env.BUILD === 'development' +const isAnalyze = process.env.ANALYZE export default { input: 'src/index.ts', output: { - dir: 'lib', + ...(isDevelopmentBuild ? { dir: 'lib' } : { file: 'lib/index.js' }), format: 'cjs', sourcemap: !!isDevelopmentBuild, - preserveModules: true, - preserveModulesRoot: 'src' + ...(isDevelopmentBuild && { preserveModules: true }), + ...(isDevelopmentBuild && { preserveModulesRoot: 'src' }), + ...(!isDevelopmentBuild && { plugins: [terser({ numWorkers: 2 })] }) }, external: ['async_hooks', 'cluster', 'events', 'worker_threads'], plugins: [ - ts({ + typescript({ tsconfig: isDevelopmentBuild ? 'tsconfig.development.json' : 'tsconfig.json' }), del({ - targets: 'lib/*' - }) + targets: ['lib/*'] + }), + isAnalyze && analyze() ] }