Skip to content

Commit

Permalink
Merge pull request #1 from Jrmy-b/dev
Browse files Browse the repository at this point in the history
Little fix on "start" and "prod" scripts of package.json
  • Loading branch information
Jrmy-b authored Jan 30, 2018
2 parents 383c694 + 11bf526 commit 0b1be44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
"update": "npm update && npm prune",
"clean": "rm -rf node_modules/",
"reinstall": "npm cache clean && npm run clean && npm install",
"start": "cross-env NODE_ENV=development PORT=3000 HOST=localhost; node server.js",
"start": "cross-env NODE_ENV=development PORT=3000 HOST=localhost node server.js",
"start:debug": "nodemon --inspect server.js",
"prod": "cross-env NODE_ENV=production PORT=3000 HOST=localhost; node server.js ",
"prod": "cross-env NODE_ENV=production PORT=3000 HOST=localhost node server.js ",
"test": "gulp test",
"ava": "NODE_ENV=development node --harmony server.js & sleep 5 && ava",
"test:server": "gulp test:server",
Expand Down

0 comments on commit 0b1be44

Please sign in to comment.