bradstewart / electron-boilerplate-vue

Boilerplate application for Electron runtime
724 stars 94 forks source link

Problem with npm run build #15

Closed dbalas closed 8 years ago

dbalas commented 8 years ago

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 8 years ago

Oh wow, you are absolutely right--not sure how I managed that one. Thanks for the heads up! Fixed in https://github.com/bradstewart/electron-boilerplate-vue/commit/aabbc0c21cd53f1bc97aac051fb06a055440101a

dbalas commented 8 years ago

you're welcome, nice repo and good job!