chore(tauri.js) run rollup with silent flag

This commit is contained in:
Lucas Nogueira 2020-07-03 17:50:12 -03:00
parent 17a047e1bb
commit d871af4083
No known key found for this signature in database
GPG Key ID: 2714B66BCFB01F7F

View File

@ -12,7 +12,7 @@
"scripts": {
"build": "yarn build:api && yarn build:typedefs && yarn build:webpack",
"build:webpack": "webpack --progress",
"build:api": "rollup -c && yarn build:typedefs",
"build:api": "rollup -c --silent && yarn build:typedefs",
"build:typedefs": "yarn tsc ./api-src/index.ts --declaration --emitDeclarationOnly --outDir api",
"build-release": "yarn build --display none --progress false",
"test": "jest --runInBand --no-cache --testPathIgnorePatterns=\"(build|dev)\"",