Skip to content

Commit

Permalink
chore: update dependencies (#9114)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB authored Nov 7, 2019
1 parent 0fd5e3c commit bbfef53
Show file tree
Hide file tree
Showing 13 changed files with 1,484 additions and 1,488 deletions.
2 changes: 1 addition & 1 deletion e2e/__tests__/__snapshots__/moduleNameMapper.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ FAIL __tests__/index.js
12 | module.exports = () => 'test';
13 |
at createNoMappedModuleFoundError (../../packages/jest-resolve/build/index.js:468:17)
at createNoMappedModuleFoundError (../../packages/jest-resolve/build/index.js:483:17)
at Object.require (index.js:10:1)
`;
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ FAIL __tests__/test.js
| ^
9 |
at Resolver.resolveModule (../../packages/jest-resolve/build/index.js:255:17)
at Resolver.resolveModule (../../packages/jest-resolve/build/index.js:272:17)
at Object.require (index.js:8:18)
`;
2 changes: 1 addition & 1 deletion e2e/__tests__/__snapshots__/transform.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ FAIL __tests__/ignoredFile.test.js
babel-jest: Babel ignores __tests__/ignoredFile.test.js - make sure to include the file in Jest's transformIgnorePatterns as well.
at loadBabelConfig (../../../packages/babel-jest/build/index.js:174:13)
at loadBabelConfig (../../../packages/babel-jest/build/index.js:191:13)
`;

exports[`babel-jest instruments only specific files and collects coverage 1`] = `
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"lerna": "3.16.4",
"lerna": "3.18.3",
"version": "24.9.0",
"npmClient": "yarn",
"packages": [
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"@types/which": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"ansi-regex": "^4.0.0",
"ansi-regex": "^5.0.0",
"ansi-styles": "^4.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.5",
Expand All @@ -32,12 +32,12 @@
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.1.0",
"execa": "^2.0.4",
"execa": "^3.2.0",
"fast-check": "^1.13.0",
"find-process": "^1.4.1",
"glob": "^7.1.1",
Expand All @@ -46,7 +46,7 @@
"istanbul-lib-coverage": "^2.0.2",
"istanbul-lib-report": "^2.0.4",
"istanbul-reports": "^2.1.1",
"jest-junit": "^7.0.0",
"jest-junit": "^9.0.0",
"jest-silent-reporter": "^0.1.2",
"jest-snapshot-serializer-raw": "^1.1.0",
"jest-watch-typeahead": "^0.4.0",
Expand All @@ -55,7 +55,7 @@
"karma-chrome-launcher": "^3.0.0",
"karma-mocha": "^1.3.0",
"karma-webpack": "^4.0.2",
"lerna": "3.16.4",
"lerna": "3.18.3",
"micromatch": "^4.0.2",
"mkdirp": "^0.5.1",
"mocha": "^6.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-fb-strict/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"eslint": "^4.2.0 || ^5.0.0 || ^6.0.0",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-flowtype": "^2.35.0 || ^3.0.0 || ^4.0.0",
"eslint-plugin-jest": "^21.0.0 || ^22.0.0",
"eslint-plugin-jest": "^21.0.0 || ^22.0.0 || ^23.0.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-changed-files/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"types": "build/index.d.ts",
"dependencies": {
"@jest/types": "^24.9.0",
"execa": "^2.0.4",
"execa": "^3.2.0",
"throat": "^5.0.0"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-circus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@types/babel__traverse": "^7.0.4",
"@types/co": "^4.6.0",
"@types/stack-utils": "^1.0.1",
"execa": "^2.0.4",
"execa": "^3.2.0",
"jest-runtime": "^24.9.0"
},
"engines": {
Expand Down
3 changes: 2 additions & 1 deletion packages/jest-core/src/lib/handle_deprecation_warnings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ export default (
stdin.setRawMode(true);
stdin.resume();
stdin.setEncoding('utf8');
stdin.on('data', key => {
// this is a string since we set encoding above
stdin.on('data', (key: string) => {
if (key === KEYS.ENTER) {
resolve();
} else if (
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-reporters/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"strip-ansi": "^5.0.0"
},
"optionalDependencies": {
"node-notifier": "^5.4.3"
"node-notifier": "^6.0.0"
},
"engines": {
"node": ">= 8"
Expand Down
3 changes: 1 addition & 2 deletions packages/pretty-format/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,11 @@
"author": "James Kyle <[email protected]>",
"dependencies": {
"@jest/types": "^24.9.0",
"ansi-regex": "^4.0.0",
"ansi-regex": "^5.0.0",
"ansi-styles": "^4.0.0",
"react-is": "^16.8.4"
},
"devDependencies": {
"@types/ansi-regex": "^4.0.0",
"@types/ansi-styles": "^3.2.1",
"@types/react": "*",
"@types/react-is": "^16.7.1",
Expand Down
3 changes: 1 addition & 2 deletions packages/test-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@
"main": "build/index.js",
"types": "build/index.d.ts",
"dependencies": {
"ansi-regex": "^4.1.0",
"ansi-regex": "^5.0.0",
"ansi-styles": "^4.1.0"
},
"devDependencies": {
"@types/ansi-regex": "^4.0.0",
"@types/ansi-styles": "^3.2.1"
}
}
Loading

0 comments on commit bbfef53

Please sign in to comment.