Eduard Baun
Eduard Baun
Looking at the installed packages gave me this: ``` $ npm list redux-persist [email protected] /Users/edy/dev/app ├─┬ @redux-offline/[email protected] │ └── [email protected] invalid └── [email protected] ``` I found a workaround, which is...
@EQuimper is this how your store looks like? then the save filter should look like this: ``` const saveSubsetFilter = createFilter( 'ui', ['gamesLiked', 'channelsLiked'] ); ``` otherwise if its only...
hi, thank you for creating the first issue :-) i set up an example repository which shows how one would use the filter transform: https://github.com/edy/redux-persist-transform-filter-example it's an create-react-app and is...
i'll tinker around the next days and will get back to you later with my results
Maybe the lodash modules are blowing up the size?
Would you like to help me and make a pull request to solve the issue?
how does your state look like? could you provide a reproducible example? i can only test with android devices
What about just using `JSON.parse(JSON.stringify(state))` instead of `cloneDeep(state)`? Would that solve the issue?
yeah, i think that would be the best solution. the thing is, i didn't want to manipulate the state directly, so I deepcloned it.
This is how i do my jobs. ``` class BaseJob { async perform () { throw new Error('You must specify the perform() method.'); } } BaseJob.attachJob = function startJob (JobClass)...