redux-dynamic-modules
redux-dynamic-modules copied to clipboard
Modularize Redux by dynamically loading reducers and middlewares.
As I can see from here https://github.com/microsoft/redux-dynamic-modules/blob/c1439e67de12488a142df9c07cbc394e87e329cf/packages/redux-dynamic-modules-saga/src/SagaExtension.ts#L24 it's impossible to pass a custom `sagaMonitor` to `getSagaExtension`. Would it be possible to fix this?
Relative task https://github.com/microsoft/redux-dynamic-modules/issues/79
Modern build tools like snowpack, vite, rollup cat't bundle this package. More details: https://github.com/vitejs/vite/issues/720
I use widgets file module.js  file index.js  file foo.js  file bar.js  run error  how fix run multi
Please update IModule interface, so it will be possible to set Action type, e.g. export interface IModule { /** * Id of the module */ id: string; /** * Reducers...
I try to reset the redux store (logout behavior) but I can't find a simple solution that allows me to do it globally when using redux-dynamic-modules. Before using redux-dynamic-modules, I...
Versions: ``` "react": "16.11.0", "react-native": "0.62.0", "react-redux": "^7.2.0", "redux": "^4.0.5", "redux-devtools-extension": "^2.13.8", "redux-dynamic-modules": "^5.2.3", "redux-dynamic-modules-thunk": "^5.2.3", "redux-persist": "^6.0.0", "redux-thunk": "^2.3.0" React Native Debugger 0.11.3 ``` Implementing redux-dynamic-modules has broken remote...
Almost done with migration to redux-dynamic-modules, but I can't make my epics working. I use Dependencies Injection because of unit testing: https://redux-observable.js.org/docs/recipes/InjectingDependenciesIntoEpics.html ``` import { createEpicMiddleware, combineEpics } from 'redux-observable';...
I'm using parcel for building my application and I had this issue https://github.com/reduxjs/react-redux/issues/1489, in short, the application has react-redux/lib and react-redux/es running at the same time, and my ReactReduxContext was...
The code uses `toString()` to check uniqueness on Epics, but when using `combineEpics` the result is always the same which means that if two modules use `combineEpics` only the first...