v1.0.0
BREAKING CHANGES
- Change order of arguments (#27)
initialState
is now the first argument instead of the last to support TypeScript:- reduceReducers(reducerA, reducerB, initialState); + reduceReducers(initialState, reducerA, reducerB);
Added
- TypeScript support
- Upgrading to this version should automatically make TypeScript aware of the type definition.