Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
feat(redux): update to redux v4 (#501)
BREAKING CHANGE: redux-observable now requires redux v4. The new version of redux is mostly the same, however it required us to change the `createEpicMiddleware` API. See https://redux-observable.js.org/MIGRATION.html
- Loading branch information
Showing
with
19 additions
and 19 deletions.
- +2 −2 package.json
- +8 −13 test/createEpicMiddleware-spec.js
- +1 −0 test/initAction.d.ts
- +3 −0 test/initAction.js
- +5 −4 test/typings.ts
@@ -0,0 +1 @@ | ||
export const initAction: { type: string }; |
@@ -0,0 +1,3 @@ | ||
import { __DO_NOT_USE__ActionTypes as actionTypes } from 'redux'; | ||
|
||
export const initAction = { type: actionTypes.INIT }; |