v1.1.0
Minor Changes
Redux Beacon now passes the next state to event definitions.
Before:
const eventDef = (
action,
prevState
) => ({
...
});
Now:
const eventDef = (
action,
prevState,
+ nextState
) => ({
...
});
Install it from npm
npm install redux-beacon@1.1.0 --save