From 8592595bc8e734e1238bc8fc9121bcc7b07a7db6 Mon Sep 17 00:00:00 2001 From: mitchell Date: Wed, 22 Apr 2026 23:01:35 -0400 Subject: [PATCH] chore: combined & parallelize build:js and build:tts scripts --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 2a72890..f244af2 100644 --- a/package.json +++ b/package.json @@ -11,8 +11,7 @@ "dev": "bun run index.ts", "prod": "bun run out/index.js", "check": "bunx --bun @biomejs/biome check --write && bun run tc", - "build:js": "bun run check && bun run build:bundle && bun run shebang", - "build:tts": "bun run check && bun run build:kokoro && bun run shebang:tts", + "build:js": "bun run check && bun run --parallel build:bundle build:kokoro && bun run --parallel shebang shebang:tts", "build:bundle": "bun build --target=bun --production --sourcemap --outdir=out index.ts", "build:kokoro": "bun build --target=bun --production --sourcemap --outdir=out kokoro.ts", "build:bin": "bun build --compile --outfile=out/aicl index.ts",