X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=rollup.config.mjs;h=9dcf125df6b274fdfd06fc95447e08ff8aba873a;hb=HEAD;hp=e3af7e1d8af9657fe50be3750b7aa4acd8671a25;hpb=211b4eb5ca5829653a7bf63d4df5c3f1aa4df755;p=poolifier.git diff --git a/rollup.config.mjs b/rollup.config.mjs index e3af7e1d..a6d7eae8 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -1,16 +1,18 @@ 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 try { + // eslint-disable-next-line n/no-unsupported-features/node-builtins availableParallelism = os.availableParallelism() } catch { const cpus = os.cpus() @@ -22,8 +24,9 @@ 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) @@ -34,59 +37,68 @@ export default defineConfig([ output: [ { format: 'cjs', - sourcemap: true, - ...(isDevelopmentBuild && { - dir: './lib', - preserveModules: true, - preserveModulesRoot: './src' + ...(isDevelopmentBuild + ? { + dir: './lib', + entryFileNames: '[name].cjs', + chunkFileNames: '[name]-[hash].cjs', + preserveModules: true, + preserveModulesRoot: './src', + } + : { + file: './lib/index.cjs', + plugins: [terser({ maxWorkers })], + }), + ...(sourcemap && { + sourcemap, }), - ...(!isDevelopmentBuild && { - file: './lib/index.js', - plugins: [terser({ maxWorkers })] - }) }, { format: 'esm', - sourcemap: true, - ...(isDevelopmentBuild && { - dir: './lib', - entryFileNames: '[name].mjs', - chunkFileNames: '[name]-[hash].mjs', - preserveModules: true, - preserveModulesRoot: './src' + ...(isDevelopmentBuild + ? { + dir: './lib', + entryFileNames: '[name].mjs', + chunkFileNames: '[name]-[hash].mjs', + preserveModules: true, + preserveModulesRoot: './src', + } + : { + file: './lib/index.mjs', + plugins: [terser({ maxWorkers })], + }), + ...(sourcemap && { + sourcemap, }), - ...(!isDevelopmentBuild && { - file: './lib/index.mjs', - plugins: [terser({ maxWorkers })] - }) - } + }, ], external: [/^node:*/], plugins: [ typescript({ tsconfig: './tsconfig.build.json', compilerOptions: { - sourceMap: true - } + sourceMap: sourcemap, + }, }), del({ - targets: ['./lib/*'] + targets: ['./lib/*'], }), - Boolean(isAnalyzeBuild) && analyze(), - Boolean(isDocumentationBuild) && command('pnpm typedoc') - ] + isAnalyzeBuild && analyze(), + isDocumentationBuild && command('pnpm typedoc'), + ], }, { input: './lib/dts/index.d.ts', + strictDeprecations: true, output: [{ format: 'esm', file: './lib/index.d.ts' }], external: [/^node:*/], plugins: [ dts(), del({ targets: ['./lib/dts'], - hook: 'buildEnd' + hook: 'buildEnd', }), - Boolean(isAnalyzeBuild) && analyze() - ] - } + isAnalyzeBuild && analyze(), + ], + }, ])