|
54 | 54 | "clean-all": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules && rm -rf ./integration_tests/*/*/node_modules && yarn run build-clean",
|
55 | 55 | "danger": "node ./danger/node_modules/.bin/danger",
|
56 | 56 | "jest": "node ./packages/jest-cli/bin/jest.js",
|
57 |
| - "jest-coverage": "yarn run jest -- --coverage", |
58 |
| - "lint": "yarn run lint-prettier && eslint . --cache && yarn run lint-docs", |
| 57 | + "jest-coverage": "yarn run jest --silent -- --coverage", |
| 58 | + "lint": "yarn run lint-prettier --silent && eslint . --cache && yarn run lint-docs --silent", |
59 | 59 | "lint-docs": "eslint --config ./.eslintrc-docs.json --no-ignore --ext md ./docs/*.md",
|
60 | 60 | "lint-prettier": "node scripts/prettier.js lint",
|
61 | 61 | "prettier": "node scripts/prettier.js write",
|
62 |
| - "postinstall": "node ./scripts/postinstall.js && yarn run build && (cd packages/eslint-plugin-jest && yarn link) && yarn link eslint-plugin-jest", |
63 |
| - "publish": "yarn run build-clean && yarn run build && lerna publish", |
64 |
| - "test-ci": "yarn run typecheck && yarn run lint && yarn run jest-coverage -- -i && yarn run test-examples && node scripts/mapCoverage.js && codecov", |
65 |
| - "test-ci-partial": "yarn run jest -- -i && yarn run test-examples", |
| 62 | + "postinstall": "node ./scripts/postinstall.js && yarn run build --silent && (cd packages/eslint-plugin-jest && yarn link --silent) && yarn link eslint-plugin-jest --silent", |
| 63 | + "publish": "yarn run build-clean --silent && yarn run build --silent && lerna publish --silent", |
| 64 | + "test-ci": "yarn run typecheck --silent && yarn run lint --silent && yarn run jest-coverage --silent -- -i && yarn run test-examples --silent && node scripts/mapCoverage.js && codecov", |
| 65 | + "test-ci-partial": "yarn run jest --silent -- -i && yarn run test-examples --silent", |
66 | 66 | "test-examples": "node scripts/test_examples.js",
|
67 | 67 | "test-pretty-format-perf": "node packages/pretty-format/perf/test.js",
|
68 |
| - "test": "yarn run typecheck && yarn run lint && yarn run jest && yarn run test-examples", |
| 68 | + "test": "yarn run typecheck --silent && yarn run lint --silent && yarn run jest --silent && yarn run test-examples --silent", |
69 | 69 | "typecheck": "flow check",
|
70 |
| - "watch": "yarn run build && node ./scripts/watch.js" |
| 70 | + "watch": "yarn run build --silent && node ./scripts/watch.js" |
71 | 71 | },
|
72 | 72 | "jest": {
|
73 | 73 | "modulePathIgnorePatterns": [
|
|
0 commit comments