Skip to content

Commit 3a26679

Browse files
TimerJohnNilsson
authored andcommitted
Update dev deps (#2923)
* Bump deps * Fix linter errors * Whoops * Try to bump webpack * Update peer deps to min for eslint 4.x
1 parent 159ba7f commit 3a26679

File tree

9 files changed

+29
-29
lines changed

9 files changed

+29
-29
lines changed

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"lerna": "2.0.0-rc.5",
2+
"lerna": "2.0.0",
33
"version": "independent",
44
"changelog": {
55
"repo": "facebookincubator/create-react-app",

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
"precommit": "lint-staged"
1515
},
1616
"devDependencies": {
17-
"@types/jest": "^19.2.3",
17+
"@types/jest": "^20.0.4",
1818
"@types/node": "^7.0.21",
19-
"@types/react": "^15.0.34",
19+
"@types/react": "^15.6.1",
2020
"@types/react-dom": "^15.5.0",
21-
"eslint": "3.19.0",
21+
"eslint": "^4.4.1",
2222
"husky": "^0.13.2",
23-
"lerna": "2.0.0-rc.5",
24-
"lerna-changelog": "^0.2.3",
23+
"lerna": "^2.0.0",
24+
"lerna-changelog": "^0.6.0",
2525
"lint-staged": "^3.3.1",
2626
"prettier": "^1.5.2"
2727
},

packages/create-react-app/createReactApp.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ function getPackageName(installPackage) {
441441
// Pull package name out of git urls e.g:
442442
// git+https://github.com/mycompany/react-scripts.git
443443
// git+ssh://github.com/mycompany/react-scripts.git#v1.2.3
444-
return Promise.resolve(installPackage.match(/([^\/]+)\.git(#.*)?$/)[1]);
444+
return Promise.resolve(installPackage.match(/([^/]+)\.git(#.*)?$/)[1]);
445445
} else if (installPackage.match(/.+@/)) {
446446
// Do not match @scope/ when stripping off @version or @tag
447447
return Promise.resolve(

packages/eslint-config-react-app/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"babel-eslint": "^7.2.3",
1515
"eslint": "^4.1.1",
1616
"eslint-plugin-flowtype": "^2.34.1",
17-
"eslint-plugin-import": "^2.2.0",
18-
"eslint-plugin-jsx-a11y": "^5.0.3",
19-
"eslint-plugin-react": "^7.0.1"
17+
"eslint-plugin-import": "^2.6.0",
18+
"eslint-plugin-jsx-a11y": "^5.1.1",
19+
"eslint-plugin-react": "^7.1.0"
2020
}
2121
}

packages/react-dev-utils/formatWebpackMessages.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ function formatMessage(message, isError) {
9797
// from user code generated by WebPack. For more information see
9898
// https://github.com/facebookincubator/create-react-app/pull/1050
9999
message = message.replace(
100-
/^\s*at\s((?!webpack:).)*:\d+:\d+[\s\)]*(\n|$)/gm,
100+
/^\s*at\s((?!webpack:).)*:\d+:\d+[\s)]*(\n|$)/gm,
101101
''
102102
); // at ... ...:x:y
103103

packages/react-dev-utils/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@
3838
"anser": "1.4.1",
3939
"babel-code-frame": "6.22.0",
4040
"chalk": "1.1.3",
41-
"cross-spawn": "4.0.2",
41+
"cross-spawn": "5.1.0",
4242
"detect-port-alt": "1.1.3",
4343
"escape-string-regexp": "1.0.5",
44-
"filesize": "3.3.0",
44+
"filesize": "3.5.10",
4545
"global-modules": "1.0.0",
4646
"gzip-size": "3.0.0",
4747
"html-entities": "1.2.1",
48-
"inquirer": "3.1.1",
48+
"inquirer": "3.2.1",
4949
"is-root": "1.0.0",
5050
"opn": "5.1.0",
5151
"recursive-readdir": "2.2.1",

packages/react-dev-utils/printBuildError.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports = function printBuildError(err) {
2323
message.indexOf('from UglifyJs') !== -1
2424
) {
2525
try {
26-
const matched = /Unexpected token:(.+)\[(.+)\:(.+)\,(.+)\]\[.+\]/.exec(
26+
const matched = /Unexpected token:(.+)\[(.+):(.+),(.+)\]\[.+\]/.exec(
2727
stack
2828
);
2929
if (!matched) {

packages/react-error-overlay/package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"middleware.js"
3232
],
3333
"dependencies": {
34-
"anser": "1.2.5",
34+
"anser": "1.4.1",
3535
"babel-code-frame": "6.22.0",
3636
"babel-runtime": "6.23.0",
3737
"react-dev-utils": "^3.0.2",
@@ -42,16 +42,16 @@
4242
"babel-cli": "6.24.1",
4343
"babel-eslint": "7.2.3",
4444
"babel-preset-react-app": "^3.0.1",
45-
"cross-env": "5.0.0",
46-
"eslint": "3.19.0",
45+
"cross-env": "5.0.5",
46+
"eslint": "4.4.1",
4747
"eslint-config-react-app": "^1.0.5",
48-
"eslint-plugin-flowtype": "2.33.0",
49-
"eslint-plugin-import": "2.2.0",
50-
"eslint-plugin-jsx-a11y": "5.0.3",
51-
"eslint-plugin-react": "7.0.1",
52-
"flow-bin": "0.49.1",
53-
"jest": "20.0.1",
54-
"jest-fetch-mock": "1.1.1"
48+
"eslint-plugin-flowtype": "2.35.0",
49+
"eslint-plugin-import": "2.7.0",
50+
"eslint-plugin-jsx-a11y": "5.1.1",
51+
"eslint-plugin-react": "7.1.0",
52+
"flow-bin": "0.52.0",
53+
"jest": "20.0.4",
54+
"jest-fetch-mock": "1.2.1"
5555
},
5656
"jest": {
5757
"setupFiles": [

packages/react-scripts/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"react-scripts-ts": "./bin/react-scripts-ts.js"
2222
},
2323
"dependencies": {
24-
"autoprefixer": "7.1.1",
24+
"autoprefixer": "7.1.2",
2525
"case-sensitive-paths-webpack-plugin": "2.1.1",
2626
"chalk": "1.1.3",
2727
"css-loader": "0.28.4",
@@ -32,7 +32,7 @@
3232
"html-webpack-plugin": "2.29.0",
3333
"jest": "20.0.4",
3434
"object-assign": "4.1.1",
35-
"postcss-flexbugs-fixes": "3.0.0",
35+
"postcss-flexbugs-fixes": "3.2.0",
3636
"postcss-loader": "2.0.6",
3737
"promise": "8.0.1",
3838
"react-dev-utils": "^3.0.2",
@@ -46,8 +46,8 @@
4646
"typescript": "~2.4.0",
4747
"sw-precache-webpack-plugin": "0.11.4",
4848
"url-loader": "0.5.9",
49-
"webpack": "3.4.1",
50-
"webpack-dev-server": "2.6.1",
49+
"webpack": "3.5.1",
50+
"webpack-dev-server": "2.7.1",
5151
"webpack-manifest-plugin": "1.2.1",
5252
"whatwg-fetch": "2.0.3"
5353
},

0 commit comments

Comments
 (0)