fix: package.json (bundle files MUST NOT be present in order for npm to build the project)

This commit is contained in:
xdrm-brackets 2017-11-29 20:35:39 +01:00
parent bad67426a5
commit 3ace1314b6
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build:clean": "rm ./public_html/js/bundle@*.js*",
"build:bundle": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"build": "npm run build:clean && npm run build:bundle"
"build": "npm run build:clean; npm run build:bundle"
},
"dependencies": {
"vue": "^2.5.9"