Skip to content

Commit

Permalink
compile:watch is always dev
Browse files Browse the repository at this point in the history
  • Loading branch information
jdlrobson committed Nov 20, 2018
1 parent ff50b2c commit ecdf3b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -7,7 +7,7 @@
"start": "npm run compile && node someday.js",
"dev": "node someday.js & npm run compile:watch",
"compile": "export NODE_ENV=production && webpack --output-path public/",
"compile:watch": "webpack --output-path public/ --watch",
"compile:watch": "export NODE_ENV=development && webpack --output-path public/ --watch",
"lint:fix": "eslint . --ext .jsx --ext .js --fix",
"lint": "eslint . --ext .jsx --ext .js",
"test": "mocha --require babel-core/register tests/**/*"
Expand Down

0 comments on commit ecdf3b0

Please sign in to comment.