Skip to content

Commit

Permalink
Cleanup travis install. We don’t need the latest npm3 any longer. (je…
Browse files Browse the repository at this point in the history
…stjs#2525)

* Cleanup travis install. We don’t need the latest npm3 any longer.

* Revert "Adds support for using Danger on PRs  (jestjs#2508)"

This reverts commit 2b81d21.
  • Loading branch information
cpojer authored Jan 7, 2017
1 parent 2b81d21 commit 4a993aa
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 510 deletions.
2 changes: 0 additions & 2 deletions .flowconfig
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
[ignore]
.*/node_modules/config-chain/test/broken.json
.*/node_modules/react-native/.*
.*/node_modules/fbjs/.*
.*/vendor/jsonlint/.*
.*/examples/.*
.*/website/.*
.*/dangerfile.js

[options]
module.name_mapper='^types/\(.*\)$' -> '<PROJECT_ROOT>/types/\1.js'
Expand Down
26 changes: 13 additions & 13 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
*~
*.swp
.DS_STORE
/node_modules
.eslintcache
*.swp
*~
/examples/*/node_modules/
/packages/*/node_modules/
/integration_tests/*/node_modules
/integration_tests/transform/*/coverage
/integration_tests/transform/*/node_modules
/node_modules
/packages/*/build/
/packages/*/coverage/
/packages/*/node_modules/
/website/build
/website/node_modules
/integration_tests/transform/*/coverage
/integration_tests/transform/*/node_modules
/integration_tests/*/node_modules
npm-debug.log
website/core/metadata*.js
website/src/jest/docs
website/src/jest/blog
coverage
lerna-debug.log
npm-debug.log*
coverage
.eslintcache
website/core/metadata*.js
website/src/jest/blog
website/src/jest/docs
yarn-error.log
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ cache:
- ".eslintcache"
- "node_modules"

before_install:
- npm install npm@latest

script:
- (cd packages/eslint-plugin-jest && yarn link)
- yarn link eslint-plugin-jest
Expand Down
75 changes: 0 additions & 75 deletions dangerfile.js

This file was deleted.

4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"chalk": "^1.1.3",
"codecov": "^1.0.1",
"danger": "^0.8.0",
"eslint": "^3.11.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-flow-vars": "^0.5.0",
Expand All @@ -22,7 +21,6 @@
"istanbul-api": "^1.1.0",
"istanbul-lib-coverage": "^1.0.0",
"jasmine-reporters": "^2.2.0",
"jest-runtime": "file:./packages/jest-runtime/",
"jsdom": "^9.9.1",
"left-pad": "^1.1.1",
"lerna": "2.0.0-beta.32",
Expand All @@ -45,7 +43,7 @@
"postinstall": "node ./scripts/postinstall.js && node ./scripts/build.js",
"publish": "yarn run build-clean && yarn run build && lerna publish",
"test": "yarn run typecheck && yarn run lint && yarn run build && yarn run jest && yarn run test-examples",
"test-ci": "yarn run typecheck && yarn run lint && yarn run build && yarn run jest-coverage -- -i && yarn run test-examples && node scripts/mapCoverage.js && codecov && yarn run danger",
"test-ci": "yarn run typecheck && yarn run lint && yarn run build && yarn run jest-coverage -- -i && yarn run test-examples && node scripts/mapCoverage.js && codecov",
"test-examples": "node scripts/test_examples.js",
"typecheck": "flow check",
"watch": "yarn run build; node ./scripts/watch.js"
Expand Down
Loading

0 comments on commit 4a993aa

Please sign in to comment.