Skip to content

Commit 20aca6e

Browse files
author
Coltin Kifer
committed
chore: remove unused redux-thunk, bump some patch versions
1 parent 9641c5a commit 20aca6e

File tree

4 files changed

+104
-106
lines changed

4 files changed

+104
-106
lines changed

package-lock.json

Lines changed: 96 additions & 96 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
},
4343
"dependencies": {
4444
"@monaco-editor/react": "^4.6.0",
45-
"classnames": "^2.2.5",
45+
"classnames": "^2.5.1",
4646
"cross-fetch": "^3.1.2",
4747
"d3-scale": "^3.2.3",
4848
"d3-scale-chromatic": "^1.3.3",
@@ -52,19 +52,18 @@
5252
"monaco-editor": "^0.33.0",
5353
"oui-dom-events": "^0.2.2",
5454
"oui-dom-utils": "^0.3.8",
55-
"prop-types": "^15.6.2",
56-
"react": "^16.0.0",
57-
"react-dom": "^16.0.0",
55+
"prop-types": "^15.8.1",
56+
"react": "^16.14.0",
57+
"react-dom": "^16.14.0",
5858
"react-helmet": "^6.1.0",
5959
"react-monaco-editor": "^0.40.0",
6060
"react-redux": "^7.0.0",
6161
"react-router": "^3.0.0",
62-
"react-router-redux": "~4.0.7",
62+
"react-router-redux": "~4.0.8",
6363
"react-router-scroll": "~0.4.1",
64-
"react-runner": "^1.0.3",
64+
"react-runner": "^1.0.5",
6565
"recharts": "^2.15.0",
6666
"redux": "4.0.0",
67-
"redux-thunk": "^2.3.0",
6867
"rimraf": "^2.5.4",
6968
"scroll-behavior": "^0.9.12",
7069
"simple-line-icons": "^2.5.5"

src/redux/configureStore.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import { applyMiddleware, compose, createStore } from 'redux';
2-
import thunk from 'redux-thunk';
32
import { routerMiddleware } from 'react-router-redux';
43
import rootReducer from './rootReducer';
54

65
export default function configureStore(initialState = {}, history) {
7-
const middleware = [thunk, routerMiddleware(history)];
6+
const middleware = [routerMiddleware(history)];
87

98
const enhancers = [];
109
// eslint-disable-next-line no-undef

0 commit comments

Comments
 (0)