Skip to content

Commit

Permalink
Making HMR to work on Windows (#418)
Browse files Browse the repository at this point in the history
HMR not working on Windows and it took me like 40 minutes to figure it out. I verified this was the cause before sending this PR.
  • Loading branch information
andrerpena authored and chentsulin committed Sep 25, 2016
1 parent 111c19b commit f3edd4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test-watch": "npm test -- --watch",
"test-e2e": "cross-env NODE_ENV=test BABEL_DISABLE_CACHE=1 mocha --compilers js:babel-register --require ./test/setup.js ./test/e2e.js",
"lint": "eslint app test *.js",
"hot-server": "node -r babel-register server.js",
"hot-server": "cross-env NODE_ENV=development node -r babel-register server.js",
"build-main": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config webpack.config.electron.js --progress --profile --colors",
"build-renderer": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config webpack.config.production.js --progress --profile --colors",
"build": "npm run build-main && npm run build-renderer",
Expand Down

0 comments on commit f3edd4b

Please sign in to comment.