X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=rollup.config.mjs;h=23d260d05ee6af1dc374dbfb98007c851dc13479;hb=5aa31a743fde300612ae89a242b809ae7db083ed;hp=b1386fbdd0dea8c352c0dad28b9dac9e309be252;hpb=783e54da51be197679f8440dd7ad7ac05e787ead;p=poolifier.git diff --git a/rollup.config.mjs b/rollup.config.mjs index b1386fbd..23d260d0 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -1,10 +1,12 @@ 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 analyze from 'rollup-plugin-analyzer' import command from 'rollup-plugin-command' import del from 'rollup-plugin-delete' +import { defineConfig } from 'rollup' const availableParallelism = () => { let availableParallelism = 1 @@ -19,42 +21,48 @@ const availableParallelism = () => { return availableParallelism } -const isDevelopmentBuild = process.env.BUILD === 'development' -const isAnalyzeBuild = process.env.ANALYZE -const isDocumentationBuild = process.env.DOCUMENTATION +const isDevelopmentBuild = env.BUILD === 'development' +const isAnalyzeBuild = env.ANALYZE +const isDocumentationBuild = env.DOCUMENTATION +const sourcemap = env.SOURCEMAP !== 'false' const maxWorkers = Math.floor(availableParallelism() / 2) -export default [ +export default defineConfig([ { - input: 'src/index.ts', + input: './src/index.ts', strictDeprecations: true, output: [ { format: 'cjs', ...(isDevelopmentBuild && { - dir: 'lib', - sourcemap: true, + dir: './lib', preserveModules: true, - preserveModulesRoot: 'src' + preserveModulesRoot: './src' }), ...(!isDevelopmentBuild && { - file: 'lib/index.js', + file: './lib/index.js', plugins: [terser({ maxWorkers })] + }), + ...(sourcemap && { + sourcemap }) }, { format: 'esm', ...(isDevelopmentBuild && { - dir: 'lib', - sourcemap: true, + dir: './lib', entryFileNames: '[name].mjs', + chunkFileNames: '[name]-[hash].mjs', preserveModules: true, - preserveModulesRoot: 'src' + preserveModulesRoot: './src' }), ...(!isDevelopmentBuild && { - file: 'lib/index.mjs', + file: './lib/index.mjs', plugins: [terser({ maxWorkers })] + }), + ...(sourcemap && { + sourcemap }) } ], @@ -70,12 +78,13 @@ export default [ ], plugins: [ typescript({ - tsconfig: isDevelopmentBuild - ? 'tsconfig.development.json' - : 'tsconfig.production.json' + tsconfig: './tsconfig.build.json', + compilerOptions: { + sourceMap: sourcemap + } }), del({ - targets: ['lib/*'] + targets: ['./lib/*'] }), isAnalyzeBuild && analyze(), isDocumentationBuild && command('pnpm typedoc') @@ -83,7 +92,7 @@ export default [ }, { input: './lib/dts/index.d.ts', - output: [{ format: 'esm', file: 'lib/index.d.ts' }], + output: [{ format: 'esm', file: './lib/index.d.ts' }], external: [ 'node:async_hooks', 'node:cluster', @@ -94,10 +103,10 @@ export default [ plugins: [ dts(), del({ - targets: ['lib/dts'], + targets: ['./lib/dts'], hook: 'buildEnd' }), isAnalyzeBuild && analyze() ] } -] +])