Skip to content

Commit

Permalink
--silent flag (jestjs#4450)
Browse files Browse the repository at this point in the history
- removes the silent flag from package.json scripts
 - closes jestjs#4449
  • Loading branch information
doowb authored and tabrindle committed Oct 2, 2017
1 parent 7637ec1 commit b9eb222
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,19 +83,19 @@
"build": "node ./scripts/build.js",
"clean-all": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules && rm -rf ./integration_tests/*/*/node_modules && yarn run build-clean",
"jest": "node ./packages/jest-cli/bin/jest.js",
"jest-coverage": "yarn run jest --silent -- --coverage",
"jest-coverage": "yarn run jest -- --coverage",
"lint": "eslint . --cache --ext js,md",
"lint-es5-build": "eslint --no-eslintrc --no-ignore --env=browser packages/*/build-es5",
"postinstall": "yarn run build --silent",
"publish": "yarn run build-clean --silent && yarn run build --silent && lerna publish --silent",
"postinstall": "yarn run build",
"publish": "yarn run build-clean && yarn run build && lerna publish --silent",
"test-ci-es5-build-in-browser": "karma start --single-run",
"test-ci": "yarn run typecheck --silent && yarn run lint --silent && yarn run lint-es5-build && yarn run jest-coverage --silent -- -i && yarn run test-examples --silent && node scripts/mapCoverage.js && codecov",
"test-ci-partial": "yarn run jest --silent -- -i && yarn run test-examples --silent",
"test-ci": "yarn run typecheck && yarn run lint && yarn run lint-es5-build && yarn run jest-coverage -- -i && yarn run test-examples && node scripts/mapCoverage.js && codecov",
"test-ci-partial": "yarn run jest -- -i && yarn run test-examples",
"test-examples": "node scripts/test_examples.js",
"test-pretty-format-perf": "node packages/pretty-format/perf/test.js",
"test": "yarn run typecheck --silent && yarn run lint --silent && yarn run jest --silent && yarn run test-examples --silent",
"test": "yarn run typecheck && yarn run lint && yarn run jest && yarn run test-examples",
"typecheck": "flow check",
"watch": "yarn run build --silent && node ./scripts/watch.js"
"watch": "yarn run build && node ./scripts/watch.js"
},
"workspaces": [
"packages/*"
Expand Down

0 comments on commit b9eb222

Please sign in to comment.