Skip to content

Commit e212d28

Browse files
committed
Upgrade deps. Handle new error boundary messages.
1 parent 67bcd88 commit e212d28

File tree

10 files changed

+10153
-2556
lines changed

10 files changed

+10153
-2556
lines changed

packages/react-router-config/package-lock.json

+1,075-823
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/react-router-config/package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -30,32 +30,32 @@
3030
},
3131
"devDependencies": {
3232
"babel-cli": "^6.26.0",
33-
"babel-eslint": "^8.0.1",
34-
"babel-jest": "^21.2.0",
33+
"babel-eslint": "^8.2.1",
34+
"babel-jest": "^22.1.0",
3535
"babel-plugin-dev-expression": "^0.2.1",
3636
"babel-plugin-external-helpers": "^6.22.0",
37-
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
37+
"babel-plugin-transform-react-remove-prop-types": "^0.4.12",
3838
"babel-preset-es2015": "^6.14.0",
3939
"babel-preset-react": "^6.5.0",
4040
"babel-preset-stage-1": "^6.5.0",
41-
"eslint": "^4.9.0",
42-
"eslint-plugin-import": "^2.2.0",
43-
"eslint-plugin-react": "^7.4.0",
44-
"gzip-size": "^4.0.0",
41+
"eslint": "^4.16.0",
42+
"eslint-plugin-import": "^2.8.0",
43+
"eslint-plugin-react": "^7.6.0",
44+
"gzip-size": "^4.1.0",
4545
"history": "^4.7.2",
46-
"jest": "^21.2.1",
46+
"jest": "^22.1.4",
4747
"pretty-bytes": "^4.0.2",
4848
"raf": "^3.4.0",
49-
"react": "^16.0.0",
49+
"react": "^16.2.0",
5050
"react-addons-test-utils": "^15.6.2",
51-
"react-dom": "^16.0.0",
51+
"react-dom": "^16.2.0",
5252
"react-router": "^4.2.0",
53-
"rollup": "^0.50.0",
54-
"rollup-plugin-babel": "^3.0.2",
55-
"rollup-plugin-commonjs": "^8.2.3",
56-
"rollup-plugin-node-resolve": "^3.0.0",
53+
"rollup": "^0.50.1",
54+
"rollup-plugin-babel": "^3.0.3",
55+
"rollup-plugin-commonjs": "^8.2.6",
56+
"rollup-plugin-node-resolve": "^3.0.2",
5757
"rollup-plugin-replace": "^2.0.0",
58-
"rollup-plugin-uglify": "^2.0.1"
58+
"rollup-plugin-uglify": "^3.0.0"
5959
},
6060
"browserify": {
6161
"transform": [

packages/react-router-dom/modules/__tests__/Link-test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ describe("A <Link>", () => {
5151
ReactDOM.render(<Link to="/">link</Link>, node);
5252
}).toThrow(/You should not use <Link> outside a <Router>/);
5353

54-
expect(console.error.calls.count()).toBe(2);
54+
expect(console.error.calls.count()).toBe(3);
5555
expect(console.error.calls.argsFor(0)[0]).toContain(
5656
"The context `router` is marked as required in `Link`"
5757
);
@@ -71,7 +71,7 @@ describe("A <Link>", () => {
7171
);
7272
}).toThrow(/You must specify the "to" property/);
7373

74-
expect(console.error.calls.count()).toBe(2);
74+
expect(console.error.calls.count()).toBe(3);
7575
expect(console.error.calls.argsFor(0)[0]).toContain(
7676
"The prop `to` is marked as required in `Link`"
7777
);

0 commit comments

Comments
 (0)