forked from react-boilerplate/react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Maintenance work (react-boilerplate#2618)
Updated all the outdated dependencies. - I changed the `history` imports following a warning saying our usage was deprecated. - I also removed `eslint-plugin-compat` (which was a recent addition). In v3, instead of being able to tell the plugin about your polyfills in a concise way (i.e. `fetch, promise`), you now have to specify individual methods so it becomes extremely verbose and I have a feeling it will be confusing to many users.
- Loading branch information
Showing
6 changed files
with
1,926 additions
and
819 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import createHistory from 'history/createBrowserHistory'; | ||
const history = createHistory(); | ||
import { createBrowserHistory } from 'history'; | ||
const history = createBrowserHistory(); | ||
export default history; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import createHistory from 'history/createBrowserHistory'; | ||
const history = createHistory(); | ||
import { createBrowserHistory } from 'history'; | ||
const history = createBrowserHistory(); | ||
export default history; |
Oops, something went wrong.