X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=rollup.config.mjs;h=9dcf125df6b274fdfd06fc95447e08ff8aba873a;hb=b91fcfbf592b9b02364b2b478e410c513c6f96f9;hp=3d069f7f7b0f6956ec192bb40748db09bee76a1c;hpb=f8496b2247cb7e47192173307d690c33c4deaf2c;p=poolifier.git diff --git a/rollup.config.mjs b/rollup.config.mjs index 3d069f7f..9dcf125d 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -1,12 +1,13 @@ import * as os from 'node:os' import { env } from 'node:process' -import { dts } from 'rollup-plugin-dts' + import terser from '@rollup/plugin-terser' import typescript from '@rollup/plugin-typescript' +import { defineConfig } from 'rollup' import analyze from 'rollup-plugin-analyzer' import command from 'rollup-plugin-command' import del from 'rollup-plugin-delete' -import { defineConfig } from 'rollup' +import { dts } from 'rollup-plugin-dts' const availableParallelism = () => { let availableParallelism = 1 @@ -22,8 +23,8 @@ const availableParallelism = () => { } const isDevelopmentBuild = env.BUILD === 'development' -const isAnalyzeBuild = env.ANALYZE -const isDocumentationBuild = env.DOCUMENTATION +const isAnalyzeBuild = Boolean(env.ANALYZE) +const isDocumentationBuild = Boolean(env.DOCUMENTATION) const sourcemap = env.SOURCEMAP !== 'false' const maxWorkers = Math.floor(availableParallelism() / 2) @@ -35,50 +36,48 @@ export default defineConfig([ output: [ { format: 'cjs', - ...(isDevelopmentBuild && { - dir: './lib', - preserveModules: true, - preserveModulesRoot: './src' - }), - ...(!isDevelopmentBuild && { - file: './lib/index.js', - plugins: [terser({ maxWorkers })] - }), + ...(isDevelopmentBuild + ? { + dir: './lib', + entryFileNames: '[name].cjs', + chunkFileNames: '[name]-[hash].cjs', + preserveModules: true, + preserveModulesRoot: './src' + } + : { + file: './lib/index.cjs', + plugins: [terser({ maxWorkers })] + }), ...(sourcemap && { sourcemap }) }, { format: 'esm', - ...(isDevelopmentBuild && { - dir: './lib', - entryFileNames: '[name].mjs', - chunkFileNames: '[name]-[hash].mjs', - preserveModules: true, - preserveModulesRoot: './src' - }), - ...(!isDevelopmentBuild && { - file: './lib/index.mjs', - plugins: [terser({ maxWorkers })] - }), + ...(isDevelopmentBuild + ? { + dir: './lib', + entryFileNames: '[name].mjs', + chunkFileNames: '[name]-[hash].mjs', + preserveModules: true, + preserveModulesRoot: './src' + } + : { + file: './lib/index.mjs', + plugins: [terser({ maxWorkers })] + }), ...(sourcemap && { sourcemap }) } ], - external: [ - 'node:async_hooks', - 'node:cluster', - 'node:crypto', - 'node:events', - 'node:fs', - 'node:os', - 'node:perf_hooks', - 'node:worker_threads' - ], + external: [/^node:*/], plugins: [ typescript({ - tsconfig: './tsconfig.build.json' + tsconfig: './tsconfig.build.json', + compilerOptions: { + sourceMap: sourcemap + } }), del({ targets: ['./lib/*'] @@ -89,14 +88,9 @@ export default defineConfig([ }, { input: './lib/dts/index.d.ts', + strictDeprecations: true, output: [{ format: 'esm', file: './lib/index.d.ts' }], - external: [ - 'node:async_hooks', - 'node:cluster', - 'node:events', - 'node:perf_hooks', - 'node:worker_threads' - ], + external: [/^node:*/], plugins: [ dts(), del({