Skip to content

Commit 33121cd

Browse files
committed
back to 2 max workers
1 parent ad400e2 commit 33121cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/generate-md-exports.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ async function createWork() {
3838
// Putting 4 as the minimum as Vercel has 4 cores per builder and it may help
3939
// us cut down some of the time there.
4040
// Source: https://vercel.com/docs/limits#build-container-resources
41-
const numWorkers = Math.max(Math.floor(cpus().length / 2), 4);
41+
const numWorkers = Math.max(Math.floor(cpus().length / 2), 2);
4242
const workerTasks = new Array(numWorkers).fill(null).map(() => []);
4343

4444
console.log(`🔎 Discovering files to convert...`);

0 commit comments

Comments
 (0)