Skip to content

Commit

Permalink
Use projects in config instead of custom script (#5053)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB authored and cpojer committed Dec 11, 2017
1 parent e44de3f commit 3ea2e10
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 59 deletions.
25 changes: 0 additions & 25 deletions examples/README.md

This file was deleted.

11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,10 @@
"postinstall": "yarn build",
"publish": "yarn build-clean && yarn build && lerna publish --silent",
"test-ci-es5-build-in-browser": "karma start --single-run",
"test-ci": "yarn typecheck && yarn lint && yarn lint-es5-build && yarn jest-coverage -- -i && yarn test-examples && node scripts/mapCoverage.js && codecov",
"test-ci-partial": "yarn jest -i && yarn test-examples",
"test-examples": "node scripts/test_examples.js",
"test-ci": "yarn typecheck && yarn lint && yarn lint-es5-build && yarn jest-coverage -- -i && node scripts/mapCoverage.js && codecov",
"test-ci-partial": "yarn jest -i",
"test-pretty-format-perf": "node packages/pretty-format/perf/test.js",
"test": "yarn typecheck && yarn lint && yarn jest && yarn test-examples",
"test": "yarn typecheck && yarn lint && yarn jest",
"typecheck": "flow check --include-warnings",
"watch": "yarn build && node ./scripts/watch.js"
},
Expand Down Expand Up @@ -125,6 +124,10 @@
"coverageReporters": [
"json"
],
"projects": [
"<rootDir>",
"<rootDir>/examples/*/"
],
"transform": {
"^.+\\.js$": "<rootDir>/packages/babel-jest"
},
Expand Down
30 changes: 0 additions & 30 deletions scripts/test_examples.js

This file was deleted.

0 comments on commit 3ea2e10

Please sign in to comment.