mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
11 lines
315 B
TypeScript
11 lines
315 B
TypeScript
import os from 'node:os';
|
|
|
|
/**
|
|
* The maximum number of concurrent tasks we want to have on some CLI and CI tasks. The amount of
|
|
* CPUS minus one, arbitrary limited to 5 to not overload CI executors.
|
|
*/
|
|
export const maxConcurrentTasks = Math.min(
|
|
Math.max(1, os.cpus().length - 1),
|
|
process.env.CI ? 5 : 15
|
|
);
|