From 10c029d60e1d26c07981a74abbd5da9e09c1a270 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maur=C3=ADcio=20Meneghini=20Fauth?= Date: Sat, 19 Jun 2021 16:07:54 -0300 Subject: [PATCH] Run css-compile in quiet mode for yarn build script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: MaurĂ­cio Meneghini Fauth --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ae3f345418..ebe39f9920 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,7 @@ }, "scripts": { "postinstall": "yarn run build", - "build": "yarn run css-compile --style=compressed && yarn run js-compile", + "build": "yarn run css-compile --quiet --style=compressed && yarn run js-compile", "css-compile": "sass themes/pmahomme/scss:themes/pmahomme/css themes/original/scss:themes/original/css themes/metro/scss:themes/metro/css themes/bootstrap/scss:themes/bootstrap/css", "css-lint": "stylelint --syntax scss \"themes/**/scss/*.scss\"", "js-lint": "eslint js/src test/javascript test/jest jest.config.js",