Skip to content

Commit a1a150c

Browse files
authored
Fix script "setup-admin-dashboard"
Fix the "setup-admin-dashboard" script where "npm build" is not working. Replace this with "npm run build"
1 parent b22405e commit a1a150c

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
@@ -35,7 +35,7 @@
3535
"test": "react-scripts test",
3636
"eject": "react-scripts eject",
3737
"lint": "eslint .",
38-
"setup-admin-dashboard": "npm install && npm build && firebase deploy",
38+
"setup-admin-dashboard": "npm install && npm run build && firebase deploy",
3939
"deploy": "npm run build && firebase deploy --only hosting",
4040
"precommit:react": "npm test",
4141
"precommit:functions": "cd functions/ && npm run build && npm test",

0 commit comments

Comments
 (0)