From 8dac328f4fe35071d1c03327e2b2e087ab5fff4d Mon Sep 17 00:00:00 2001 From: Patel230 Date: Thu, 8 Jan 2026 10:06:53 +0530 Subject: [PATCH] fix(devcontainer): use bunx for concurrently command - Changed 'concurrently' to 'bunx concurrently' in dev:full script - Fixes issue where concurrently command is not found in PATH - Resolves #2661 --- apps/sim/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/sim/package.json b/apps/sim/package.json index f627227d9a..9dc7abd47c 100644 --- a/apps/sim/package.json +++ b/apps/sim/package.json @@ -11,7 +11,7 @@ "dev": "next dev --port 3000", "dev:webpack": "next dev --webpack", "dev:sockets": "bun run socket/index.ts", - "dev:full": "concurrently -n \"App,Realtime\" -c \"cyan,magenta\" \"bun run dev\" \"bun run dev:sockets\"", + "dev:full": "bunx concurrently -n \"App,Realtime\" -c \"cyan,magenta\" \"bun run dev\" \"bun run dev:sockets\"", "build": "next build", "start": "next start", "prepare": "cd ../.. && bun husky",