X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=rollup.config.mjs;h=d365a3e43eb47ec4666b093e113984d1357c4102;hb=b22597f8697096535962ea219a1e21d78402ce62;hp=77d516bd6e483da4c5cac72391b3a05cb1bb4087;hpb=5ea2262889dc3886579289b0d7205632bfea4bf2;p=poolifier.git diff --git a/rollup.config.mjs b/rollup.config.mjs index 77d516bd..d365a3e4 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -1,8 +1,8 @@ -import typescript from 'rollup-plugin-typescript2' +import terser from '@rollup/plugin-terser' +import typescript from '@rollup/plugin-typescript' import analyze from 'rollup-plugin-analyzer' -import { terser } from 'rollup-plugin-terser' -import del from 'rollup-plugin-delete' import command from 'rollup-plugin-command' +import del from 'rollup-plugin-delete' const isDevelopmentBuild = process.env.BUILD === 'development' const isAnalyze = process.env.ANALYZE @@ -10,20 +10,36 @@ const isDocumentation = process.env.DOCUMENTATION export default { input: 'src/index.ts', - output: { - ...(isDevelopmentBuild ? { dir: 'lib' } : { file: 'lib/index.js' }), - format: 'cjs', - sourcemap: !!isDevelopmentBuild, - ...(isDevelopmentBuild && { preserveModules: true }), - ...(isDevelopmentBuild && { preserveModulesRoot: 'src' }), - ...(!isDevelopmentBuild && { plugins: [terser({ numWorkers: 2 })] }) - }, - external: ['async_hooks', 'cluster', 'events', 'worker_threads'], + strictDeprecations: true, + output: [ + { + ...(isDevelopmentBuild ? { dir: 'lib' } : { file: 'lib/index.js' }), + format: 'cjs', + sourcemap: !!isDevelopmentBuild, + ...(isDevelopmentBuild && { + preserveModules: true, + preserveModulesRoot: 'src' + }), + ...(!isDevelopmentBuild && { plugins: [terser({ maxWorkers: 2 })] }) + }, + { + ...(isDevelopmentBuild ? { dir: 'lib' } : { file: 'lib/index.mjs' }), + format: 'esm', + sourcemap: !!isDevelopmentBuild, + ...(isDevelopmentBuild && { + entryFileNames: '[name].mjs', + preserveModules: true, + preserveModulesRoot: 'src' + }), + ...(!isDevelopmentBuild && { plugins: [terser({ maxWorkers: 2 })] }) + } + ], + external: ['async_hooks', 'cluster', 'events', 'os', 'worker_threads'], plugins: [ typescript({ tsconfig: isDevelopmentBuild ? 'tsconfig.development.json' - : 'tsconfig.json' + : 'tsconfig.production.json' }), del({ targets: ['lib/*']