Fix npm start script (#7034)

This commit is contained in:
Amaury Martiny 2017-11-13 12:46:11 +01:00 committed by Jaco Greeff
parent 073b4dacfb
commit 93e93a50ce
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@
"lint:js": "eslint --ignore-path .gitignore ./src/",
"lint:js:cached": "eslint --cache --ignore-path .gitignore ./src/",
"lint:js:fix": "eslint --fix --ignore-path .gitignore ./src/",
"start": "npm run clean && npm install && npm run build:lib && npm run start:app",
"start": "npm run clean && npm install && npm run build:inject && npm run start:app",
"start:app": "node webpack/dev.server",
"start:electron": "npm run build:app && electron .build/",
"test": "cross-env NODE_ENV=test mocha --compilers ejs:ejsify 'src/**/*.spec.js'",