mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-01 03:02:28 +03:00
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:
parent
717d607e51
commit
26c497979f
5
.github/workflows/test-core.yml
vendored
5
.github/workflows/test-core.yml
vendored
@ -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
|
||||
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user