Skip to content

Commit

Permalink
Fix npm run build:prod
Browse files Browse the repository at this point in the history
  • Loading branch information
osmarcs committed Jun 20, 2017
1 parent 8a49a45 commit c23bade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"start:web": "webpack-dev-server --content-base . --port 4200 --inline",
"build:electron:main": "tsc main.ts --outDir dist && copyfiles package.json dist && cd dist && npm install --prod && cd ..",
"build": "webpack --display-error-details && npm run build:electron:main",
"build:prod": "cross-env NODE_ENV='production' npm run build",
"build:prod": "cross-env NODE_ENV='production' && npm run build",
"electron:serve": "npm run build:electron:main && electron ./dist --serve",
"electron:test": "electron ./dist",
"electron:dev": "npm run build && electron ./dist",
Expand Down

0 comments on commit c23bade

Please sign in to comment.