redux-persist-transform-immutable icon indicating copy to clipboard operation
redux-persist-transform-immutable copied to clipboard

immutable support for redux-persist

Results 17 redux-persist-transform-immutable issues
Sort by recently updated
recently updated
newest added

This package is working in production for us with latest redux-persist. Would be great to remove install errors/warnings due to a mismatched peer dependency. :pray:

Redux-persist 6 is released Contains a breaking change, but it is unrelated to transforms https://github.com/rt2zz/redux-persist/releases/tag/v6.0.0 Loosen dependency to allow `v6`?

Just added type for the default function exported in `index.js`.

How Can I rehydorate model class extended Immustable.Record This is part of my code.(don't work properly) my model ``` export interface IUsers { users: List; } export const UsersRecord =...

This module supports it but the current peer dependency causes the following error when redux-persist 5 is installed: ``` npm ERR! peerinvalid The package [email protected] does not satisfy its siblings'...

is there any plan to support top level immutable ?

Hi, I'm trying to use both immutable state and nested persists (for code splitting) https://github.com/rt2zz/redux-persist#nested-persists https://github.com/rt2zz/redux-persist-transform-immutable Config looks like this: ``` const rootPersistConfig = { key: 'root', storage: storage, whitelist:...

console.error: "redux-persist: invalid option passed to persistStore: "transforms". You may be incorrectly passing persistConfig into persistStore, whereas it should be passed into persistReducer." my code: `import { createStore } from...

Hi, I facing some issues to use transform-immutable and transform-encrypt with redux-persist v5. I managed to use transform-immutable alone. But when I try to use encrypt with it I get...

The transform works well when I use it in my application, but it fails when running my unit tests declaring that it is not a function. Is there a specific...