Skip to content

Commit 3c9d9f1

Browse files
sij411claude
andcommitted
Allow configuring compile concurrency via CONCURRENCY env var
Defaults to 3 if not set. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 8d8b7a4 commit 3c9d9f1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/cli/scripts/pack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ async function pack(os: OS, arch: Arch): Promise<void> {
5656
const osFilter = Deno.env.get("OS")?.toLowerCase();
5757
const archFilter = Deno.env.get("ARCH")?.toLowerCase();
5858

59-
const maxConcurrency = 3;
59+
const maxConcurrency = parseInt(Deno.env.get("CONCURRENCY") ?? "3");
6060
const tasks: Array<() => Promise<void>> = [];
6161
for (const osKey in triplets) {
6262
const os = osKey as OS;

0 commit comments

Comments
 (0)