Update react-intl-redux' redux dependency (#36966)

react-intl-redux depends on react-redux and redux. react-redux also
depends on redux, but a different version. This PR makes the versions
the same.

This fixes a DT build failure, and makes things less confusing.
This commit is contained in:
Nathan Shively-Sanders 2019-07-17 16:04:45 -07:00 committed by GitHub
parent f9fb7e64a5
commit 4868a800d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ interface IntlAction extends Action {
payload?: IntlState
}
export function intlReducer(state: IntlState, action: IntlAction): IntlState
export function intlReducer(state: IntlState | undefined, action: IntlAction): IntlState
export function updateIntl (opts: IntlState): IntlAction
export class IntlProvider extends ReactIntlProvider {}
export class Provider<A extends Action = AnyAction> extends ReduxProvider<A> {}

View File

@ -1,6 +1,6 @@
{
"private": true,
"dependencies": {
"redux": "^3.6.0"
"redux": "^4.0.0"
}
}