Skip to content

Commit

Permalink
Bump some dev dependency versions (#8044)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Mar 4, 2019
1 parent 38a37aa commit 5f7c3e4
Show file tree
Hide file tree
Showing 11 changed files with 898 additions and 873 deletions.
2 changes: 1 addition & 1 deletion .flowconfig
Expand Up @@ -13,7 +13,7 @@ untyped-import
untyped-type-import

[version]
^0.93.0
^0.94.0

[options]
module.name_mapper='^pretty-format$' -> '<PROJECT_ROOT>/packages/pretty-format/src/index.js'
Expand Down
4 changes: 2 additions & 2 deletions examples/enzyme/package.json
Expand Up @@ -3,8 +3,8 @@
"version": "0.0.0",
"name": "example-enzyme",
"dependencies": {
"react": "^16.4.0",
"react-dom": "^16.4.0"
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@babel/core": "*",
Expand Down
2 changes: 1 addition & 1 deletion examples/react-native/package.json
Expand Up @@ -8,7 +8,7 @@
},
"dependencies": {
"react": "16.6.3",
"react-native": "0.57.8"
"react-native": "0.58.6"
},
"devDependencies": {
"@babel/core": "*",
Expand Down
4 changes: 2 additions & 2 deletions examples/react-testing-library/package.json
Expand Up @@ -3,8 +3,8 @@
"version": "0.0.0",
"name": "example-react-testing-library",
"dependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0"
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@babel/core": "*",
Expand Down
4 changes: 2 additions & 2 deletions examples/react/package.json
Expand Up @@ -3,8 +3,8 @@
"version": "0.0.0",
"name": "example-react",
"dependencies": {
"react": "^16.4.0",
"react-dom": "^16.4.0"
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@babel/core": "*",
Expand Down
2 changes: 1 addition & 1 deletion examples/snapshot/package.json
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"name": "example-snapshot",
"dependencies": {
"react": "^16.4.0"
"react": "*"
},
"devDependencies": {
"@babel/core": "*",
Expand Down
8 changes: 4 additions & 4 deletions examples/typescript/package.json
Expand Up @@ -3,16 +3,16 @@
"version": "0.0.0",
"name": "example-typescript",
"dependencies": {
"react": "^16.4.0",
"react-dom": "^16.4.0",
"typescript": "^3.0.0"
"react": "*",
"react-dom": "*",
"typescript": "*"
},
"devDependencies": {
"@babel/core": "*",
"@babel/preset-env": "*",
"@babel/preset-react": "*",
"@babel/preset-typescript": "*",
"@types/jest": "^24.0.0",
"@types/jest": "*",
"babel-jest": "*",
"jest": "*"
},
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
@@ -1,5 +1,5 @@
{
"lerna": "3.10.5",
"lerna": "3.13.1",
"version": "24.1.0",
"npmClient": "yarn",
"packages": [
Expand Down
10 changes: 5 additions & 5 deletions package.json
Expand Up @@ -37,26 +37,26 @@
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-relay": "~0.0.19",
"execa": "^1.0.0",
"flow-bin": "^0.93.0",
"flow-bin": "^0.94.0",
"glob": "^7.1.1",
"graceful-fs": "^4.1.15",
"isbinaryfile": "^3.0.3",
"isbinaryfile": "^4.0.0",
"istanbul-api": "^2.0.8",
"istanbul-lib-coverage": "^2.0.2",
"jasmine-reporters": "^2.2.0",
"jest-junit": "^6.2.1",
"jest-silent-reporter": "^0.1.2",
"jest-snapshot-serializer-raw": "^1.1.0",
"jquery": "^3.2.1",
"karma": "^3.1.4",
"karma": "^4.0.1",
"karma-chrome-launcher": "^2.1.1",
"karma-mocha": "^1.3.0",
"karma-webpack": "4.0.0-rc.5",
"left-pad": "^1.1.1",
"lerna": "3.10.5",
"lerna": "3.13.1",
"micromatch": "^3.1.10",
"mkdirp": "^0.5.1",
"mocha": "^5.0.1",
"mocha": "^6.0.2",
"mock-fs": "^4.4.1",
"prettier": "^1.16.1",
"prettylint": "^1.0.0",
Expand Down
4 changes: 2 additions & 2 deletions scripts/checkCopyrightHeaders.js
Expand Up @@ -9,7 +9,7 @@

const fs = require('fs');
const {execSync} = require('child_process');
const isbinaryfile = require('isbinaryfile');
const {isBinaryFileSync} = require('isbinaryfile');

const getFileContents = path => fs.readFileSync(path, {encoding: 'utf-8'});
const isDirectory = path => fs.lstatSync(path).isDirectory();
Expand Down Expand Up @@ -132,7 +132,7 @@ function check() {
INCLUDED_PATTERNS.some(pattern => pattern.test(file)) &&
!IGNORED_PATTERNS.some(pattern => pattern.test(file)) &&
!isDirectory(file) &&
!isbinaryfile.sync(file) &&
!isBinaryFileSync(file) &&
needsCopyrightHeader(file)
);

Expand Down

0 comments on commit 5f7c3e4

Please sign in to comment.