From d871af4083b48feca024eaacf019f62942ff400d Mon Sep 17 00:00:00 2001 From: Lucas Nogueira Date: Fri, 3 Jul 2020 17:50:12 -0300 Subject: [PATCH] chore(tauri.js) run rollup with silent flag --- cli/tauri.js/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/tauri.js/package.json b/cli/tauri.js/package.json index e6cbc07b7..9ccbd7e86 100644 --- a/cli/tauri.js/package.json +++ b/cli/tauri.js/package.json @@ -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)\"",