Skip to content

Commit 4f020f6

Browse files
authored
Make yarn silent. (#3396)
1 parent 5e0710e commit 4f020f6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -54,20 +54,20 @@
5454
"clean-all": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules && rm -rf ./integration_tests/*/*/node_modules && yarn run build-clean",
5555
"danger": "node ./danger/node_modules/.bin/danger",
5656
"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",
5959
"lint-docs": "eslint --config ./.eslintrc-docs.json --no-ignore --ext md ./docs/*.md",
6060
"lint-prettier": "node scripts/prettier.js lint",
6161
"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",
6666
"test-examples": "node scripts/test_examples.js",
6767
"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",
6969
"typecheck": "flow check",
70-
"watch": "yarn run build && node ./scripts/watch.js"
70+
"watch": "yarn run build --silent && node ./scripts/watch.js"
7171
},
7272
"jest": {
7373
"modulePathIgnorePatterns": [

0 commit comments

Comments
 (0)