@koda-sl/baker-cli 0.305.0-dev.582739c3e → 0.305.0-dev.a04fd407d
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -8228,9 +8228,9 @@ async function substituteCompositionFiles(tmp, values) {
|
|
|
8228
8228
|
}
|
|
8229
8229
|
await writeFile6(entryPath, output, "utf-8");
|
|
8230
8230
|
}
|
|
8231
|
-
var MAX_WORKERS =
|
|
8231
|
+
var MAX_WORKERS = 8;
|
|
8232
8232
|
function workerCount() {
|
|
8233
|
-
return Math.max(1, Math.min(MAX_WORKERS, cpus().length));
|
|
8233
|
+
return Math.max(1, Math.min(MAX_WORKERS, cpus().length - 1));
|
|
8234
8234
|
}
|
|
8235
8235
|
async function runRender(opts) {
|
|
8236
8236
|
const { tmp, outputPath, params, meta, ctx } = opts;
|
|
@@ -9633,4 +9633,4 @@ export {
|
|
|
9633
9633
|
defaultRegistry,
|
|
9634
9634
|
createEngineFromEnv
|
|
9635
9635
|
};
|
|
9636
|
-
//# sourceMappingURL=chunk-
|
|
9636
|
+
//# sourceMappingURL=chunk-ZNN6ZHDS.js.map
|