fix: wrap glob in quotes so that it's properly passed to npm-run-all
This commit is contained in:
parent
5dad1070b6
commit
5c96635d79
1 changed files with 2 additions and 2 deletions
|
@ -42,11 +42,11 @@
|
|||
]
|
||||
},
|
||||
"scripts": {
|
||||
"start": "npm-run-all --parallel start:desktop-*",
|
||||
"start": "npm-run-all --parallel 'start:desktop-*'",
|
||||
"start:desktop-node": "yarn workspace loot-core watch:node",
|
||||
"start:desktop-client": "yarn workspace @actual-app/web watch",
|
||||
"start:desktop-electron": "yarn workspace Actual watch",
|
||||
"start:browser": "npm-run-all --parallel start:browser-*",
|
||||
"start:browser": "npm-run-all --parallel 'start:browser-*'",
|
||||
"start:browser-backend": "yarn workspace loot-core watch:browser",
|
||||
"start:browser-frontend": "yarn workspace @actual-app/web start:browser",
|
||||
"test": "./node_modules/.bin/jest --maxWorkers=4",
|
||||
|
|
Loading…
Reference in a new issue