X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=rollup.config.mjs;h=d4af3f3ff624310388649f22934a60e7cf867d18;hb=4baa5f634e5cd68c9447999c1ab84a3ef6f7583d;hp=b1386fbdd0dea8c352c0dad28b9dac9e309be252;hpb=d011a2fc0be659b02f048ee3fc5dcaf86dfe4c1b;p=poolifier.git diff --git a/rollup.config.mjs b/rollup.config.mjs index b1386fbd..d4af3f3f 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,85 +21,77 @@ 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 }) } ], - 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: 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') + Boolean(isAnalyzeBuild) && analyze(), + Boolean(isDocumentationBuild) && command('pnpm typedoc') ] }, { input: './lib/dts/index.d.ts', - output: [{ format: 'esm', file: 'lib/index.d.ts' }], - external: [ - 'node:async_hooks', - 'node:cluster', - 'node:events', - 'node:perf_hooks', - 'node:worker_threads' - ], + output: [{ format: 'esm', file: './lib/index.d.ts' }], + external: [/^node:*/], plugins: [ dts(), del({ - targets: ['lib/dts'], + targets: ['./lib/dts'], hook: 'buildEnd' }), - isAnalyzeBuild && analyze() + Boolean(isAnalyzeBuild) && analyze() ] } -] +])