Skip to content

v1.0.0

Compare
Choose a tag to compare
@timche timche released this 26 Mar 10:01
· 10 commits to master since this release

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.