From 1ea2082dcf90c5a995bda0c6c9bcf3860eb932b9 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Thu, 1 Jun 2023 18:48:21 +0200 Subject: chore: Do not sass-compile external apps Signed-off-by: Christoph Wurst --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'package.json') diff --git a/package.json b/package.json index 3fbb7d0e27f..fd8a4f6dc1d 100644 --- a/package.json +++ b/package.json @@ -17,8 +17,8 @@ "test": "jest", "test:watch": "jest --watch", "test:jsunit": "karma start tests/karma.config.js --single-run", - "sass": "sass --style compressed --load-path core/css core/css/ apps/*/css", - "sass:watch": "sass --watch --load-path core/css core/css/ apps/*/css", + "sass": "sass --style compressed --load-path core/css core/css/ $(for cssdir in $(find apps -mindepth 2 -maxdepth 2 -name \"css\"); do if ! $(git check-ignore -q $cssdir); then echo -n \"$cssdir \"; fi; done)", + "sass:watch": "sass --watch --load-path core/css core/css/ $(for cssdir in $(find apps -mindepth 2 -maxdepth 2 -name \"css\"); do if ! $(git check-ignore -q $cssdir); then echo -n \"$cssdir \"; fi; done)", "sass:icons": "babel-node core/src/icons.js", "cypress": "npm run cypress:component && npm run cypress:e2e", "cypress:component": "cypress run --component", -- cgit v1.2.3