X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=rollup.config.mjs;h=bf1685605be7cac3593cf1c7561e4e0ce93216bd;hb=63f0e1ffc8b5baba7e679ad3f8448d6aad43d7a3;hp=3dad3c3eb93ecd7880a005faa5850e353f6f5631;hpb=660940b0fcdbafb80d3c01684b668f55980bfa67;p=poolifier.git diff --git a/rollup.config.mjs b/rollup.config.mjs index 3dad3c3e..bf168560 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -1,26 +1,37 @@ +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' +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 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({ tsconfig: isDevelopmentBuild ? 'tsconfig.development.json' - : 'tsconfig.json' + : 'tsconfig.json', + browserslist: false }), + isDevelopmentBuild && istanbul(), del({ - targets: 'lib/*' - }) + targets: ['lib/*'] + }), + isAnalyze && analyze(), + isDocumentation && command('npm run typedoc') ] }