diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package.json b/package.json index 675df547f8d..3ea4dbe3ac2 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", |