fix: webpack progress display options not valid (#1086)

* fix: webpack progress display options not valid

It seems something changed that the progress and display options we were using the hide the output are no longer valid. Remove them.

* add build-release as part of tests
This commit is contained in:
Jacob Bolda 2020-11-13 02:27:42 -06:00 committed by GitHub
parent 717d607e51
commit 26c497979f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -68,3 +68,8 @@ jobs:
cd ./cli/tauri.js
yarn
yarn test
- name: run release build
timeout-minutes: 15
working-directory: cli/tauri.js
run: yarn build-release

View File

@ -14,7 +14,7 @@
"build:webpack": "rimraf ./dist && yarn build:typevalidators && webpack --progress",
"build:typevalidators": "node ./build/type-validators",
"build:api": "rimraf ./api && rollup -c --silent",
"build-release": "yarn build --display none --progress false",
"build-release": "yarn build:api && rimraf ./dist && yarn build:typevalidators && webpack",
"test": "jest --runInBand --no-cache --testPathIgnorePatterns=\"(build|dev)\"",
"pretest": "yarn build",
"prepublishOnly": "yarn build-release",