Skip to content

Commit

Permalink
Upgrade deps. Handle new error boundary messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
timdorr committed Jan 26, 2018
1 parent 67bcd88 commit e212d28
Show file tree
Hide file tree
Showing 10 changed files with 10,153 additions and 2,556 deletions.
1,898 changes: 1,075 additions & 823 deletions packages/react-router-config/package-lock.json

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions packages/react-router-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,32 +30,32 @@
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.1.0",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-plugin-transform-react-remove-prop-types": "^0.4.12",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"eslint": "^4.9.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^7.4.0",
"gzip-size": "^4.0.0",
"eslint": "^4.16.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.6.0",
"gzip-size": "^4.1.0",
"history": "^4.7.2",
"jest": "^21.2.1",
"jest": "^22.1.4",
"pretty-bytes": "^4.0.2",
"raf": "^3.4.0",
"react": "^16.0.0",
"react": "^16.2.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.0.0",
"react-dom": "^16.2.0",
"react-router": "^4.2.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.3",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup": "^0.50.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1"
"rollup-plugin-uglify": "^3.0.0"
},
"browserify": {
"transform": [
Expand Down
4 changes: 2 additions & 2 deletions packages/react-router-dom/modules/__tests__/Link-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ describe("A <Link>", () => {
ReactDOM.render(<Link to="/">link</Link>, node);
}).toThrow(/You should not use <Link> outside a <Router>/);

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

expect(console.error.calls.count()).toBe(2);
expect(console.error.calls.count()).toBe(3);
expect(console.error.calls.argsFor(0)[0]).toContain(
"The prop `to` is marked as required in `Link`"
);
Expand Down
Loading

0 comments on commit e212d28

Please sign in to comment.