Skip to content

Commit 5f7c3e4

Browse files
authored
Bump some dev dependency versions (#8044)
1 parent 38a37aa commit 5f7c3e4

File tree

11 files changed

+898
-873
lines changed

11 files changed

+898
-873
lines changed

.flowconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ untyped-import
1313
untyped-type-import
1414

1515
[version]
16-
^0.93.0
16+
^0.94.0
1717

1818
[options]
1919
module.name_mapper='^pretty-format$' -> '<PROJECT_ROOT>/packages/pretty-format/src/index.js'

examples/enzyme/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "0.0.0",
44
"name": "example-enzyme",
55
"dependencies": {
6-
"react": "^16.4.0",
7-
"react-dom": "^16.4.0"
6+
"react": "*",
7+
"react-dom": "*"
88
},
99
"devDependencies": {
1010
"@babel/core": "*",

examples/react-native/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"dependencies": {
1010
"react": "16.6.3",
11-
"react-native": "0.57.8"
11+
"react-native": "0.58.6"
1212
},
1313
"devDependencies": {
1414
"@babel/core": "*",

examples/react-testing-library/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "0.0.0",
44
"name": "example-react-testing-library",
55
"dependencies": {
6-
"react": "^16.7.0",
7-
"react-dom": "^16.7.0"
6+
"react": "*",
7+
"react-dom": "*"
88
},
99
"devDependencies": {
1010
"@babel/core": "*",

examples/react/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "0.0.0",
44
"name": "example-react",
55
"dependencies": {
6-
"react": "^16.4.0",
7-
"react-dom": "^16.4.0"
6+
"react": "*",
7+
"react-dom": "*"
88
},
99
"devDependencies": {
1010
"@babel/core": "*",

examples/snapshot/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"name": "example-snapshot",
55
"dependencies": {
6-
"react": "^16.4.0"
6+
"react": "*"
77
},
88
"devDependencies": {
99
"@babel/core": "*",

examples/typescript/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"version": "0.0.0",
44
"name": "example-typescript",
55
"dependencies": {
6-
"react": "^16.4.0",
7-
"react-dom": "^16.4.0",
8-
"typescript": "^3.0.0"
6+
"react": "*",
7+
"react-dom": "*",
8+
"typescript": "*"
99
},
1010
"devDependencies": {
1111
"@babel/core": "*",
1212
"@babel/preset-env": "*",
1313
"@babel/preset-react": "*",
1414
"@babel/preset-typescript": "*",
15-
"@types/jest": "^24.0.0",
15+
"@types/jest": "*",
1616
"babel-jest": "*",
1717
"jest": "*"
1818
},

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"lerna": "3.10.5",
2+
"lerna": "3.13.1",
33
"version": "24.1.0",
44
"npmClient": "yarn",
55
"packages": [

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -37,26 +37,26 @@
3737
"eslint-plugin-react": "^7.1.0",
3838
"eslint-plugin-relay": "~0.0.19",
3939
"execa": "^1.0.0",
40-
"flow-bin": "^0.93.0",
40+
"flow-bin": "^0.94.0",
4141
"glob": "^7.1.1",
4242
"graceful-fs": "^4.1.15",
43-
"isbinaryfile": "^3.0.3",
43+
"isbinaryfile": "^4.0.0",
4444
"istanbul-api": "^2.0.8",
4545
"istanbul-lib-coverage": "^2.0.2",
4646
"jasmine-reporters": "^2.2.0",
4747
"jest-junit": "^6.2.1",
4848
"jest-silent-reporter": "^0.1.2",
4949
"jest-snapshot-serializer-raw": "^1.1.0",
5050
"jquery": "^3.2.1",
51-
"karma": "^3.1.4",
51+
"karma": "^4.0.1",
5252
"karma-chrome-launcher": "^2.1.1",
5353
"karma-mocha": "^1.3.0",
5454
"karma-webpack": "4.0.0-rc.5",
5555
"left-pad": "^1.1.1",
56-
"lerna": "3.10.5",
56+
"lerna": "3.13.1",
5757
"micromatch": "^3.1.10",
5858
"mkdirp": "^0.5.1",
59-
"mocha": "^5.0.1",
59+
"mocha": "^6.0.2",
6060
"mock-fs": "^4.4.1",
6161
"prettier": "^1.16.1",
6262
"prettylint": "^1.0.0",

scripts/checkCopyrightHeaders.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
const fs = require('fs');
1111
const {execSync} = require('child_process');
12-
const isbinaryfile = require('isbinaryfile');
12+
const {isBinaryFileSync} = require('isbinaryfile');
1313

1414
const getFileContents = path => fs.readFileSync(path, {encoding: 'utf-8'});
1515
const isDirectory = path => fs.lstatSync(path).isDirectory();
@@ -132,7 +132,7 @@ function check() {
132132
INCLUDED_PATTERNS.some(pattern => pattern.test(file)) &&
133133
!IGNORED_PATTERNS.some(pattern => pattern.test(file)) &&
134134
!isDirectory(file) &&
135-
!isbinaryfile.sync(file) &&
135+
!isBinaryFileSync(file) &&
136136
needsCopyrightHeader(file)
137137
);
138138

0 commit comments

Comments
 (0)