Skip to content

Commit

Permalink
include webpack in start process
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffbass committed Sep 15, 2017
1 parent 21b7b93 commit 5a400e5
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 @@ -10,7 +10,7 @@
"build-client": "webpack",
"build-client-watch": "webpack -w",
"deploy": "git checkout -b deploy && webpack -p && git add -f public/bundle.js public/bundle.js.map && git commit --allow-empty -m 'Deploying' && git push --force heroku deploy:master && git checkout master && git branch -D deploy",
"start": "node server",
"start": "webpack -p && node server",
"start-dev": "npm run build-client-watch & npm run start-server",
"start-server": "NODE_ENV='development' nodemon server -e html,js,scss --ignore public",
"test": "NODE_ENV='test' DATABASE_URL='postgres://localhost:5432/boilermaker-test' mocha ./**/*.spec.js --compilers js:babel-register"
Expand Down

0 comments on commit 5a400e5

Please sign in to comment.