X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=rollup.config.mjs;h=baaeda78fe4753b19b52de5620f07ace98e20512;hb=73d87be1970bb3e8c32be6244fc510f6f501cb3a;hp=1034ffc812825d1adcc7005ac13ce24f48b8f02d;hpb=f31d1d0c5175efb4d1f0ca6c0d9c228f920aba28;p=e-mobility-charging-stations-simulator.git diff --git a/rollup.config.mjs b/rollup.config.mjs index 1034ffc8..baaeda78 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -1,5 +1,5 @@ /* eslint-disable n/no-unpublished-import */ -import { cpus } from 'node:os'; +import * as os from 'node:os'; import json from '@rollup/plugin-json'; import terser from '@rollup/plugin-terser'; @@ -8,6 +8,20 @@ import { copy } from '@web/rollup-plugin-copy'; import analyze from 'rollup-plugin-analyzer'; import del from 'rollup-plugin-delete'; +const availableParallelism = () => { + // eslint-disable-next-line no-shadow + let availableParallelism = 1; + try { + availableParallelism = os.availableParallelism(); + } catch { + const numberOfCpus = os.cpus(); + if (Array.isArray(numberOfCpus) && numberOfCpus.length > 0) { + availableParallelism = numberOfCpus.length; + } + } + return availableParallelism; +}; + const isDevelopmentBuild = process.env.BUILD === 'development'; const isAnalyzeBuild = process.env.ANALYZE; @@ -19,7 +33,7 @@ export default { dir: 'dist', format: 'esm', sourcemap: !!isDevelopmentBuild, - plugins: [terser({ maxWorkers: cpus().length / 2 })], + plugins: [terser({ maxWorkers: Math.floor(availableParallelism() / 2) })], }, ], external: [ @@ -29,12 +43,12 @@ export default { 'ajv-formats', 'basic-ftp', 'chalk', + 'date-fns', 'http-status-codes', 'just-clone', 'just-merge', 'mnemonist/lru-map-with-delete.js', 'mnemonist/queue.js', - 'moment', 'mongodb', 'node:async_hooks', 'node:crypto',