redux-multi
redux-multi copied to clipboard
react-native projects use Babel 6 and the current .babelrc in version 0.1.12 published on npm is incompatible with Babel 6. The babelrc file for an npm module should not be...
Unfortunately, I can't use this library right now because returning an array of effects is messing up a bunch of my saga tests, but if anyone has a work-around, please...
It looks like there was an oops 0.1.91 version. It should be unpublished or deprecated. Deprecated might be sufficient. Currently it shows up in the outdated view saying I could...
Hi! Thanks for creating this package! I got the following error in react native because `.babelrc` is included in installed npm package ``` TransformError: /Users/igor/repo/client/node_modules/redux-multi/lib/index.js: Couldn't find preset "es2015" relative...
- adds `.babelrc` to `.npmignore` - this prevents the issue where projects that use `redux-multi` and `babel` would error because the transpiling of `redux-multi` would start and sometimes error (ref...
Currently the library just lets to write ``` dispatch(x); dispatch(y); ``` as ``` dispatch([x, y]); ``` But I don't see why do I need a library for that. Even `Promise.all`...