Merge pull request #28296 from awanlin/topic/create-app-foreach-jobs

create-app - Added `-j 2` to `dev` script
This commit is contained in:
Fredrik Adelöw
2024-12-24 21:06:52 +01:00
committed by GitHub
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",