Skip to content

Commit 0627d2a

Browse files
committed
chore: replace & command concatenation with concurrently module
1 parent 9f1bdf7 commit 0627d2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"dev:server": "bun run --filter '@nbw/backend' start:dev",
5454
"dev:web": "bun run --filter '@nbw/frontend' dev",
5555
"dev:apps": "bun run --filter './apps/*' dev",
56-
"dev": "(cd apps/backend && bun run start:dev) & (cd apps/frontend && bun run dev)",
56+
"dev": "concurrently --names 'backend,frontend' 'cd apps/backend && bun run start:dev' 'cd apps/frontend && bun run dev'",
5757
"lint": "eslint \"**/*.{ts,tsx}\" --fix",
5858
"format": "prettier --write .",
5959
"cy:open": "bun run test:cy",

0 commit comments

Comments
 (0)