File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed
Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1+ ## v0.4.1
2+
3+ - Remove usage of ` storeShape `
4+
5+
16## v0.4.0
27
38##### Breaking Changes
Original file line number Diff line number Diff line change 2929 "babel-register" : " ^6.23.0" ,
3030 "cross-env" : " ^3.1.4" ,
3131 "enzyme" : " ^2.7.1" ,
32- "eslint" : " ^3.15.0 " ,
32+ "eslint" : " ^3.16.1 " ,
3333 "eslint-config-concise" : " ^0.6.1" ,
3434 "eslint-config-concise-esnext" : " ^0.6.0" ,
3535 "eslint-config-concise-react" : " ^0.6.0" ,
3838 "eslint-plugin-react" : " ^6.10.0" ,
3939 "immutable" : " ^3.8.1" ,
4040 "mocha" : " ^3.2.0" ,
41- "npm-run-all" : " ^4.0.1 " ,
41+ "npm-run-all" : " ^4.0.2 " ,
4242 "react" : " ^15.4.2" ,
4343 "react-addons-test-utils" : " ^15.4.2" ,
4444 "react-dom" : " ^15.4.2" ,
4545 "react-intl" : " ^2.2.3" ,
46- "react-redux" : " ^5.0.2 " ,
46+ "react-redux" : " ^5.0.3 " ,
4747 "redux" : " ^3.6.0" ,
4848 "redux-immutable" : " ^3.1.0" ,
49- "rimraf" : " ^2.5.4 " ,
49+ "rimraf" : " ^2.6.1 " ,
5050 "should" : " ^11.2.0"
5151 },
5252 "repository" : " ratson/react-intl-redux" ,
Original file line number Diff line number Diff line change 11import { Provider as ReduxProvider } from 'react-redux'
22import React , { PropTypes } from 'react'
3- import storeShape from 'react-redux/lib/utils/storeShape'
43
54import IntlProvider from './IntlProvider'
65
6+ // eslint-disable-next-line react/prop-types
77const Provider = ( { store, children} ) => (
88 < ReduxProvider store = { store } >
99 < IntlProvider >
@@ -14,7 +14,6 @@ const Provider = ({store, children}) => (
1414
1515Provider . propTypes = {
1616 children : PropTypes . element . isRequired ,
17- store : storeShape . isRequired ,
1817}
1918
2019export default Provider
You can’t perform that action at this time.
0 commit comments