Skip to content

Commit

Permalink
fix: pin react-router to 4.4.0-beta.6
Browse files Browse the repository at this point in the history
  • Loading branch information
emmenko committed Mar 5, 2019
1 parent 9541571 commit f80c51a
Show file tree
Hide file tree
Showing 9 changed files with 252 additions and 413 deletions.
4 changes: 2 additions & 2 deletions application-templates/starter/package.json
Expand Up @@ -23,8 +23,8 @@
"react-dom": "16.8.3",
"react-intl": "2.8.0",
"react-redux": "6.0.1",
"react-router": "4.4.0-beta.7",
"react-router-dom": "4.4.0-beta.7",
"react-router": "4.4.0-beta.6",
"react-router-dom": "4.4.0-beta.6",
"redux": "4.0.1"
},
"devDependencies": {
Expand Down
Expand Up @@ -26,7 +26,8 @@ export const ApplicationStarter = () => (
application routes when you open the browser at http://localhost:3001 */
process.env.NODE_ENV === 'production' ? null : (
<Redirect
from="/:projectKey/dashboard"
exact={true}
from="/:projectKey"
to="/:projectKey/examples-starter"
/>
)}
Expand Down
4 changes: 4 additions & 0 deletions package.json
Expand Up @@ -95,6 +95,10 @@
"stylelint-config-standard": "17.0.0",
"stylelint-order": "0.8.1"
},
"resolutions": {
"react-router": "4.4.0-beta.6",
"react-router-dom": "4.4.0-beta.6"
},
"engines": {
"node": ">=8.9.4",
"npm": ">=5",
Expand Down
4 changes: 2 additions & 2 deletions packages/application-shell/package.json
Expand Up @@ -101,8 +101,8 @@
"react-dom": "16.8.3",
"react-intl": "2.8.0",
"react-redux": "6.0.1",
"react-router": "4.4.0-beta.7",
"react-router-dom": "4.4.0-beta.7",
"react-router": "4.4.0-beta.6",
"react-router-dom": "4.4.0-beta.6",
"react-testing-library": "6.0.0",
"redux": "4.0.1",
"wait-for-observables": "1.0.3"
Expand Down
4 changes: 2 additions & 2 deletions packages/react-notifications/package.json
Expand Up @@ -52,8 +52,8 @@
"react-dom": "16.8.3",
"react-intl": "2.8.0",
"react-redux": "6.0.1",
"react-router": "4.4.0-beta.7",
"react-router-dom": "4.4.0-beta.7"
"react-router": "4.4.0-beta.6",
"react-router-dom": "4.4.0-beta.6"
},
"peerDependencies": {
"@commercetools-frontend/ui-kit": "9.x",
Expand Down
4 changes: 2 additions & 2 deletions playground/package.json
Expand Up @@ -33,8 +33,8 @@
"react-dom": "16.8.3",
"react-intl": "2.8.0",
"react-redux": "6.0.1",
"react-router": "4.4.0-beta.7",
"react-router-dom": "4.4.0-beta.7",
"react-router": "4.4.0-beta.6",
"react-router-dom": "4.4.0-beta.6",
"react-select": "1.2.1",
"redux": "4.0.1"
},
Expand Down
3 changes: 2 additions & 1 deletion playground/src/components/entry-point/entry-point.js
Expand Up @@ -26,7 +26,8 @@ export const ApplicationStateMachines = () => (
application routes when you open the browser at http://localhost:3001 */
process.env.NODE_ENV === 'production' ? null : (
<Redirect
from="/:projectKey/dashboard"
exact={true}
from="/:projectKey"
to="/:projectKey/state-machines"
/>
)}
Expand Down
4 changes: 2 additions & 2 deletions visual-testing-app/package.json
Expand Up @@ -13,8 +13,8 @@
"formik": "1.5.1",
"react": "16.8.3",
"react-dom": "16.8.3",
"react-router": "4.4.0-beta.7",
"react-router-dom": "4.4.0-beta.7"
"react-router": "4.4.0-beta.6",
"react-router-dom": "4.4.0-beta.6"
},
"devDependencies": {
"serve": "10.1.2",
Expand Down

0 comments on commit f80c51a

Please sign in to comment.