UNPKG

sf-package-combiner

Version:

Combine multiple Salesforce manifest files (package.xml) into 1 file for deployments.

7 lines 264 B
'use strict'; import { availableParallelism } from 'node:os'; export function getConcurrencyThreshold() { const AVAILABLE_PARALLELISM = availableParallelism(); return Math.min(AVAILABLE_PARALLELISM, 6); } //# sourceMappingURL=getConcurrencyThreshold.js.map