Skip to content

Commit 7f69176

Browse files
authoredJan 10, 2020
chore: bump deps (#9394)
1 parent 5236155 commit 7f69176

File tree

9 files changed

+432
-398
lines changed

9 files changed

+432
-398
lines changed
 

‎lerna.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"lerna": "3.18.4",
32
"version": "24.9.0",
43
"npmClient": "yarn",
54
"packages": [

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@
5757
"karma-chrome-launcher": "^3.0.0",
5858
"karma-mocha": "^1.3.0",
5959
"karma-webpack": "^4.0.2",
60-
"lerna": "3.18.4",
60+
"lerna": "3.20.2",
6161
"micromatch": "^4.0.2",
6262
"mkdirp": "^0.5.1",
63-
"mocha": "^6.0.2",
63+
"mocha": "^7.0.0",
6464
"mock-fs": "^4.4.1",
6565
"opencollective": "^1.0.3",
6666
"prettier": "^1.19.0",

‎packages/jest-cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@types/exit": "^0.1.30",
2424
"@types/is-ci": "^2.0.0",
2525
"@types/prompts": "^2.0.1",
26-
"@types/yargs": "^13.0.0"
26+
"@types/yargs": "^15.0.0"
2727
},
2828
"bin": {
2929
"jest": "./bin/jest.js"

‎packages/jest-repl/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"yargs": "^15.0.0"
2020
},
2121
"devDependencies": {
22-
"@types/yargs": "^13.0.0"
22+
"@types/yargs": "^15.0.0"
2323
},
2424
"bin": {
2525
"jest-repl": "./bin/jest-repl.js"

‎packages/jest-runtime/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@jest/test-result": "^24.9.0",
1717
"@jest/transform": "^24.9.0",
1818
"@jest/types": "^24.9.0",
19-
"@types/yargs": "^13.0.0",
19+
"@types/yargs": "^15.0.0",
2020
"chalk": "^3.0.0",
2121
"collect-v8-coverage": "^1.0.0",
2222
"exit": "^0.1.2",

‎packages/jest-runtime/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ class Runtime {
821821
localModule.exports,
822822
localModule as NodeModule, // module object
823823
localModule.exports, // module exports
824-
localModule.require as NodeRequireFunction, // require implementation
824+
localModule.require as typeof require, // require implementation
825825
dirname, // __dirname
826826
filename, // __filename
827827
this._environment.global, // global object

‎packages/jest-types/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"dependencies": {
1616
"@types/istanbul-lib-coverage": "^2.0.0",
1717
"@types/istanbul-reports": "^1.1.1",
18-
"@types/yargs": "^13.0.0",
18+
"@types/yargs": "^15.0.0",
1919
"chalk": "^3.0.0"
2020
},
2121
"publishConfig": {

‎scripts/buildUtils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ module.exports.adjustToTerminalWidth = function adjustToTerminalWidth(str) {
3636
.join('\n');
3737
};
3838

39-
module.exports.OK = PACKAGES_DIR;
39+
module.exports.OK = OK;
4040
module.exports.PACKAGES_DIR = PACKAGES_DIR;

‎yarn.lock

+424-389
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.