X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=rollup.config.mjs;h=9dcf125df6b274fdfd06fc95447e08ff8aba873a;hb=HEAD;hp=bac8f614a5524bd3983969c29ef1d4b36f6fb202;hpb=aad2595fd9c26bcb2f0d7a22d06edf56d5b08bdb;p=poolifier.git diff --git a/rollup.config.mjs b/rollup.config.mjs index bac8f614a..3676db4fd 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -1,31 +1,104 @@ -import typescript from 'rollup-plugin-typescript2' +import terser from '@rollup/plugin-terser' +import typescript from '@rollup/plugin-typescript' +import * as os from 'node:os' +import { env } from 'node:process' +import { defineConfig } from 'rollup' import analyze from 'rollup-plugin-analyzer' -import { terser } from 'rollup-plugin-terser' +import command from 'rollup-plugin-command' import del from 'rollup-plugin-delete' +import { dts } from 'rollup-plugin-dts' -const isDevelopmentBuild = process.env.BUILD === 'development' -const isAnalyze = process.env.ANALYZE +const availableParallelism = () => { + let availableParallelism = 1 + try { + availableParallelism = os.availableParallelism() + } catch { + const cpus = os.cpus() + if (Array.isArray(cpus) && cpus.length > 0) { + availableParallelism = cpus.length + } + } + return availableParallelism +} + +const isDevelopmentBuild = env.BUILD === 'development' +const isAnalyzeBuild = Boolean(env.ANALYZE) +const isDocumentationBuild = Boolean(env.DOCUMENTATION) +const sourcemap = env.SOURCEMAP !== 'false' + +const maxWorkers = Math.floor(availableParallelism() / 2) -export default { - input: 'src/index.ts', - output: { - ...(isDevelopmentBuild ? { dir: 'lib' } : { file: 'lib/index.js' }), - format: 'cjs', - sourcemap: !!isDevelopmentBuild, - ...(isDevelopmentBuild && { preserveModules: true }), - ...(isDevelopmentBuild && { preserveModulesRoot: 'src' }), - ...(!isDevelopmentBuild && { plugins: [terser({ numWorkers: 2 })] }) +export default defineConfig([ + { + external: [/^node:*/], + input: './src/index.ts', + output: [ + { + format: 'cjs', + ...(isDevelopmentBuild + ? { + chunkFileNames: '[name]-[hash].cjs', + dir: './lib', + entryFileNames: '[name].cjs', + preserveModules: true, + preserveModulesRoot: './src', + } + : { + file: './lib/index.cjs', + plugins: [terser({ maxWorkers })], + }), + ...(sourcemap && { + sourcemap, + }), + }, + { + format: 'esm', + ...(isDevelopmentBuild + ? { + chunkFileNames: '[name]-[hash].mjs', + dir: './lib', + entryFileNames: '[name].mjs', + preserveModules: true, + preserveModulesRoot: './src', + } + : { + file: './lib/index.mjs', + plugins: [terser({ maxWorkers })], + }), + ...(sourcemap && { + sourcemap, + }), + }, + ], + plugins: [ + typescript({ + compilerOptions: { + sourceMap: sourcemap, + }, + tsconfig: './tsconfig.build.json', + }), + del({ + targets: ['./lib/*'], + }), + isAnalyzeBuild && analyze(), + isDocumentationBuild && command('pnpm typedoc'), + ], + strictDeprecations: true, }, - external: ['async_hooks', 'cluster', 'events', 'worker_threads'], - plugins: [ - typescript({ - tsconfig: isDevelopmentBuild - ? 'tsconfig.development.json' - : 'tsconfig.json' - }), - del({ - targets: ['lib/*'] - }), - isAnalyze && analyze() - ] -} + { + external: [/^node:*/], + input: './lib/index.d.ts', + output: [{ file: './lib/index.d.ts', format: 'esm' }], + plugins: [ + dts(), + del({ + hook: 'buildEnd', + targets: isDevelopmentBuild + ? ['./lib/**/*.d.ts', '!./lib/index.d.ts'] + : ['./lib/**/*.d.ts', '!./lib/index.d.ts', './lib/*/'], + }), + isAnalyzeBuild && analyze(), + ], + strictDeprecations: true, + }, +])