Skip to content

Commit b191aad

Browse files
committed
Fix npm scripts so that deploy server can build properly
1 parent a1d2e69 commit b191aad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"start:fresh": "yarn reset:all && yarn start",
1111
"start:dirty": "yarn && yarn start",
1212
"build": "yarn && NODE_ENV='production' webpack --progress --colors",
13-
"build:deploy": "yarn reset:all && yarn build",
13+
"build:deploy": "yarn --production=false reset:all && yarn build",
1414
"reset:cache": "rm -rf dist/**/*/bundle.* && rm -f dist/index.html",
15-
"reset:npm": "rm -rf node_modules && yarn",
15+
"reset:npm": "rm -rf node_modules && yarn --production=false",
1616
"reset:all": "yarn reset:npm && yarn reset:cache",
1717
"lint": "eslint src/.; exit 0",
1818
"lint:fix": "eslint --fix src/.; exit 0",

0 commit comments

Comments
 (0)