Skip to content

Releases: jiggum/redux-batched-dispatch

v1.0.1

16 Jun 08:24
Compare
Choose a tag to compare

v1.0.0

16 Jun 08:10
Compare
Choose a tag to compare

⚠️ Breaking Changes ⚠️

Default Export

from

import reduxBatchedDispatch  from 'redux-batched-dispatch';
...
const store = createStore(reducer, reduxBatchedDispatch());

to

import { createBatchEnhancer }  from 'redux-batched-dispatch';
...
const store = createStore(reducer, createBatchEnhancer());

New API

  • batchAction
  • store.getActionQueue

0.3.0

15 May 17:37
Compare
Choose a tag to compare
  • Notify to listeners when get noti which not from enhanced dispatch

0.2.0

12 May 17:22
Compare
Choose a tag to compare
  • Support IIFE, ESM, CommonJS module systems