Skip to content

Commit

Permalink
Merge pull request #38590 from nextcloud/chore/sass-no-external-apps
Browse files Browse the repository at this point in the history
chore: Do not sass-compile external apps
  • Loading branch information
ChristophWurst authored Jun 6, 2023
2 parents 9ed4040 + 1ea2082 commit f96afcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit f96afcf

Please sign in to comment.