v2.0.0
Note: this release was botched. Read the notes here but install 2.0.1 (or later) instead π .
Breaking Changes
If you used Redux Thunk from npm in CommonJS environment, you need to add .default
to your require
s:
- var ReduxThunk = require('redux-thunk')
+ var ReduxThunk = require('redux-thunk').default
If you used ES modules, youβre already all good:
import ReduxThunk from 'redux-thunk' // no changes here π
New Features
UMD build
Like with CommonJS build, you will need to grab the middleware from .default
export:
var ReduxThunk = window.ReduxThunk.default
ES modules build
Rollup users can now use redux-thunk
directly without commonjs
plugin.