|
12 | 12 | "postbuild": "npm run sass && npm run sass:icons", |
13 | 13 | "dev": "webpack --node-env development --progress", |
14 | 14 | "watch": "webpack --node-env development --progress --watch", |
15 | | - "lint": "eslint $(for appdir in $(ls apps); do if ! $(git check-ignore -q $appdir); then echo -n \"$appdir \"; fi; done) core --no-error-on-unmatched-pattern", |
16 | | - "lint:fix": "eslint $(for appdir in $(ls apps); do if ! $(git check-ignore -q $appdir); then echo -n \"$appdir \"; fi; done) core --no-error-on-unmatched-pattern --fix", |
| 15 | + "lint": "eslint $(for appdir in $(ls apps); do if ! $(git check-ignore -q $appdir); then printf \"$appdir \"; fi; done) core --no-error-on-unmatched-pattern", |
| 16 | + "lint:fix": "eslint $(for appdir in $(ls apps); do if ! $(git check-ignore -q $appdir); then printf \"$appdir \"; fi; done) core --no-error-on-unmatched-pattern --fix", |
17 | 17 | "test": "jest", |
18 | 18 | "test:watch": "jest --watch", |
19 | 19 | "test:coverage": "jest --coverage", |
20 | 20 | "test:jsunit": "karma start tests/karma.config.js --single-run", |
21 | | - "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)", |
22 | | - "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)", |
| 21 | + "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 printf \"$cssdir \"; fi; done)", |
| 22 | + "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 printf \"$cssdir \"; fi; done)", |
23 | 23 | "sass:icons": "babel-node core/src/icons.js", |
24 | 24 | "cypress": "npm run cypress:component && npm run cypress:e2e", |
25 | 25 | "cypress:component": "cypress run --component", |
|
0 commit comments