Update package.json

NODE_ENV is not a recognised command on Windows, the work around is to use the cross-env package or to have two separate scripts, one for Windows and one for Unix based systems. I figured using the cross-env is much more friendly and will save confusion, tested on both Windows and Mac.
This commit is contained in:
Anthony Cook 2016-12-13 12:17:17 +00:00 committed by GitHub
parent 0f81a13cda
commit 71b6b990c8

View File

@ -3,6 +3,7 @@
"description": "",
"dependencies": {
"body-parser": "^1.15.2",
"cross-env": "^3.1.3",
"express": "^4.14.0",
"express-session": "^1.14.2",
"nuxt": "latest",
@ -11,6 +12,6 @@
"scripts": {
"dev": "node server.js",
"build": "nuxt build",
"start": "NODE_ENV=production node server.js"
"start": "cross-env NODE_ENV=production & node server.js"
}
}