Skip to content

Commit 01f575c

Browse files
committed
Fix npm run dev script to use npm-run-all2
Update the dev script to use npm-run-all2 instead of npm-run-all to match the installed dependency. This fixes the "Permission denied" error when running npm run dev.
1 parent f50ee11 commit 01f575c

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
@@ -18,7 +18,7 @@
1818
"frontend"
1919
],
2020
"scripts": {
21-
"dev": "npm-run-all --parallel --print-label dev:*",
21+
"dev": "npm-run-all2 --parallel --print-label dev:*",
2222
"dev:next": "npm run dev --workspace=frontend",
2323
"dev:studio": "npm run dev --workspace=studio",
2424
"format": "prettier --cache --write .",

0 commit comments

Comments
 (0)