X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=rollup.config.mjs;h=017ca1b9bee2ea0a1ee01ec6939248a7a23f0a3a;hb=ad8ef5e46b4a08d2bd4b7f95a7f9d4cc63e66509;hp=8997445e8f193906422514a30d0c97a837adefa5;hpb=34a0cfabc4bdc36803dfbb502f0f46704993a76b;p=poolifier.git diff --git a/rollup.config.mjs b/rollup.config.mjs index 8997445e..017ca1b9 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -10,6 +10,7 @@ const isDocumentation = process.env.DOCUMENTATION export default { input: 'src/index.ts', + strictDeprecations: true, output: [ { ...(isDevelopmentBuild ? { dir: 'lib' } : { file: 'lib/index.js' }), @@ -25,7 +26,6 @@ export default { ...(isDevelopmentBuild ? { dir: 'lib' } : { file: 'lib/index.mjs' }), format: 'esm', sourcemap: !!isDevelopmentBuild, - ...(isDevelopmentBuild && { entryFileNames: '[name].mjs', preserveModules: true, @@ -34,7 +34,14 @@ export default { ...(!isDevelopmentBuild && { plugins: [terser({ maxWorkers: 2 })] }) } ], - external: ['async_hooks', 'cluster', 'events', 'os', 'worker_threads'], + external: [ + 'node:async_hooks', + 'node:cluster', + 'node:crypto', + 'node:events', + 'node:os', + 'node:worker_threads' + ], plugins: [ typescript({ tsconfig: isDevelopmentBuild @@ -45,6 +52,6 @@ export default { targets: ['lib/*'] }), isAnalyze && analyze(), - isDocumentation && command('npm run typedoc') + isDocumentation && command('pnpm run typedoc') ] }