no need to specify config file

This commit is contained in:
Kyle Spearrin 2018-09-18 11:59:56 -04:00
parent 8a4f83e8a4
commit c7f9908eaf
1 changed files with 4 additions and 4 deletions

View File

@ -21,10 +21,10 @@
"sub:update": "git submodule update --remote",
"sub:pull": "git submodule foreach git pull",
"clean": "rimraf dist/**/*",
"build": "webpack --config webpack.config.js",
"build:watch": "webpack --config webpack.config.js --watch",
"build:prod": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"build:prod:watch": "cross-env NODE_ENV=production webpack --config webpack.config.js --watch",
"build": "webpack",
"build:watch": "webpack --watch",
"build:prod": "cross-env NODE_ENV=production webpack",
"build:prod:watch": "cross-env NODE_ENV=production webpack --watch",
"package": "npm run package:win | npm run package:mac | npm run package:lin",
"package:win": "pkg . --targets win-x64 --output ./dist/windows/bw.exe",
"package:mac": "pkg . --targets macos-x64 --output ./dist/macos/bw",