Problem with npm run build
dbalas opened this issue · 2 comments
dbalas commented
Currently It's "build": "rimraf dist && mkdirp dist cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.prod.conf.js",
so mkdirp create cross-env, NODE_ENV=production and webpack folders.
But it should be: rimraf dist && mkdirp dist && cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.prod.conf.js
no?
bradstewart commented
Oh wow, you are absolutely right--not sure how I managed that one. Thanks for the heads up! Fixed in aabbc0c
dbalas commented
you're welcome, nice repo and good job!