Skip to content

Commit 23e0033

Browse files
committed
[TASK] Update dependencies
1 parent bd17a2c commit 23e0033

File tree

4 files changed

+2475
-2075
lines changed

4 files changed

+2475
-2075
lines changed

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@
1313
"@material-ui/icons": "^3.0.2",
1414
"@types/axios": "^0.14.0",
1515
"@types/jest": "^24.0.9",
16+
"@types/jss": "^10.0.0",
1617
"@types/node": "^11.9.5",
1718
"@types/react": "^16.8.5",
1819
"@types/react-dom": "^16.8.2",
1920
"@types/react-jss": "^8.6.3",
2021
"@types/react-redux": "^7.0.3",
2122
"@types/react-router-dom": "^5.1.0",
2223
"@types/shortid": "^0.0.29",
23-
"axios": "^0.18.0",
2424
"classnames": "^2.2.6",
2525
"core-js": "^3.2.1",
26-
"cross-env": "^5.2.0",
26+
"cross-env": "^6.0.3",
2727
"gh-pages": "^2.0.1",
2828
"idb-keyval": "^3.1.0",
2929
"react": "^16.8.2",
@@ -38,7 +38,7 @@
3838
"reselect": "^4.0.0",
3939
"rpg-awesome": "^0.2.0",
4040
"shortid": "^2.2.14",
41-
"styled-components": "^4.1.3",
41+
"styled-components": "^5.0.0",
4242
"typescript": "^3.3.4000"
4343
},
4444
"homepage": "https://on3iro.github.io/aeons-end-randomizer/",
@@ -72,9 +72,9 @@
7272
"@types/classnames": "^2.2.7",
7373
"@types/styled-components": "^4.1.11",
7474
"babel-plugin-macros": "^2.5.0",
75-
"husky": "^1.3.1",
75+
"husky": "^4.0.10",
7676
"prettier": "^1.18.2",
77-
"pretty-quick": "^1.10.0",
78-
"source-map-explorer": "^1.7.0"
77+
"pretty-quick": "^2.0.1",
78+
"source-map-explorer": "^2.2.2"
7979
}
8080
}

src/components/molecules/BottomNavigation/Link.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ type Props = {
99
}
1010

1111
const Link = React.memo(({ to, label, icon }: Props) => (
12-
<StyledLink to={to} isActive={match => (match ? true : false)}>
12+
<StyledLink to={to} isActive={(match: any) => (match ? true : false)}>
1313
<i className={`ra ra-lg ${icon}`} />
1414
<span>{label}</span>
1515
</StyledLink>

src/index.tsx

+3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ import ReactDOM from 'react-dom'
66
import { Provider } from 'react-redux'
77

88
import JssProvider from 'react-jss/lib/JssProvider'
9+
10+
// @ts-ignore
911
import { create } from 'jss'
12+
1013
import { createGenerateClassName, jssPreset } from '@material-ui/core/styles'
1114

1215
import App from './components/App'

0 commit comments

Comments
 (0)