create-app - Added -j 2 to dev script

Signed-off-by: Andre Wanlin <awanlin@spotify.com>
This commit is contained in:
Andre Wanlin
2024-12-24 13:19:39 -06:00
parent ca6d1d42bf
commit 828c99374d
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/create-app': patch
---
Added `-j 2` to `dev` script to help cases where the backend does not start up during local development
@@ -6,7 +6,7 @@
"node": "20 || 22"
},
"scripts": {
"dev": "yarn workspaces foreach -A --include backend --include app --parallel -v -i run start",
"dev": "yarn workspaces foreach -A --include backend --include app --parallel -j 2 -v -i run start",
"start": "yarn workspace app start",
"start-backend": "yarn workspace backend start",
"build:backend": "yarn workspace backend build",