Add dev dependencies

This commit is contained in:
iAmWillShepherd 2017-02-07 15:11:48 -06:00
parent dda8f95440
commit 3d4f700eaa
2 changed files with 11 additions and 8 deletions

View file

@ -36,6 +36,9 @@
"uuid": "^3.0.1"
},
"devDependencies": {
"devtron": "^1.4.0",
"electron-debug": "^1.1.0",
"electron-devtools-installer": "^2.1.0",
"fs-extra": "^1.0.0",
"react-addons-perf": "^15.4.2",
"react-addons-test-utils": "^15.4.2",

View file

@ -27,13 +27,13 @@ server.listen(port, 'localhost', err => {
console.log(`Server running at http://localhost:${port}`)
const runningApp = run()
if (!runningApp) {
console.error("Couldn't launch the app. You probably need to build it first. Run `npm run build:dev`.")
process.exit(1)
}
// const runningApp = run()
// if (!runningApp) {
// console.error("Couldn't launch the app. You probably need to build it first. Run `npm run build:dev`.")
// process.exit(1)
// }
runningApp.on('close', () => {
process.exit(0)
})
// runningApp.on('close', () => {
// process.exit(0)
// })
})