From e59c94812b0dd6ceaf10a24eded08610e18caec7 Mon Sep 17 00:00:00 2001 From: Matt Cowger Date: Mon, 27 Jul 2026 13:12:39 -0700 Subject: [PATCH] perf(build): parallelize server dependencies (#2434) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a477e4ac5..ec45bed38 100644 --- a/package.json +++ b/package.json @@ -49,9 +49,9 @@ "build:relay:clean": "npm run build:clean --workspace=@getpaseo/relay", "build:protocol": "npm run build --workspace=@getpaseo/protocol", "build:protocol:clean": "npm run build:clean --workspace=@getpaseo/protocol", - "build:client": "npm run build:protocol && npm run build --workspace=@getpaseo/client", + "build:client": "npm run build --workspace=@getpaseo/client", "build:client:clean": "npm run build:protocol:clean && npm run build:clean --workspace=@getpaseo/client", - "build:server-deps": "npm run build:highlight && npm run build:relay && npm run build:client", + "build:server-deps": "concurrently --kill-others-on-fail --names highlight,relay,client --prefix-colors yellow,blue,cyan \"npm run build:highlight\" \"npm run build:relay\" \"npm run build:client\"", "build:server-deps:clean": "npm run build:highlight:clean && npm run build:relay:clean && npm run build:client:clean", "build:server": "npm run build:server-deps && npm run build --workspace=@getpaseo/server && npm run build --workspace=@getpaseo/cli", "build:server:clean": "npm run build:server-deps:clean && npm run build:clean --workspace=@getpaseo/server && npm run build:clean --workspace=@getpaseo/cli",