bradstewart/electron-boilerplate-vue

Problem with npm run build

dbalas opened this issue · 2 comments

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?

Oh wow, you are absolutely right--not sure how I managed that one. Thanks for the heads up! Fixed in aabbc0c

you're welcome, nice repo and good job!