Skip to content

Releases: dabapps/redux-create-reducer

Type overhaul

21 Aug 10:52
301df9e
Compare
Choose a tag to compare
  • Fixed types of handlers for newer versions of TS.
  • Returned reducer takes AnyAction.

TYPE BREAKING CHANGE: generic params have changed. You should remove any explicitly passed generic params and instead rely on inferring from the types of the handlers e.g.

createReducer<string>({
  foo: (state) => state
})

Becomes

createReducer({
  foo: (state: string) => state
});

#13

Improve no-undefined types

16 Jun 09:25
d1254f7
Compare
Choose a tag to compare

Dependency and git / npm ignore updates

23 Apr 13:05
0e1c451
Compare
Choose a tag to compare

Types fix

05 Apr 10:29
7a0f581
Compare
Choose a tag to compare

First @dabapps scoped release

21 Mar 12:14
b2081fc
Compare
Choose a tag to compare