Remove source operator in npm scripts

This commit is contained in:
John Furrow
2017-02-08 21:16:02 -08:00
parent efb0e98df5
commit d5d0d2d2f4
+2 -2
View File
@@ -5,9 +5,9 @@
"scripts": {
"preinstall": "npm prune",
"build-assets": "NODE_ENV=production gulp dist",
"start:development": "nodemon ./server/bin/www",
"start:development": "nodemon server/bin/www",
"start:production": "npm start",
"start": "node ./server/bin/www",
"start": "node server/bin/www",
"start:watch": "NODE_ENV=development gulp livereload"
},
"dependencies": {