Rob Soden

Results 4 comments of Rob Soden

wanted to post some updates here as we just completed a successful upgrade to replicache 14 on react-native. here are the workarounds to everything we ran into: - there's a...

@darioielardi glad it was helpful! so I'm using the following: `"@react-native-replicache/react-native-quick-sqlite": "^1.0.0"` `"react-native-quick-sqlite": "^8.0.4"` and then I've used patch-package to apply those 2 changes to the ReplicacheQuickSQLiteTransaction class (since my...

oh and also FWIW here's my replicache instantiation, nothing really unique here: ``` const replicache = new Replicache({ licenseKey: Config.REPLICACHE_LICENSE_KEY ?? '', experimentalCreateKVStore: createReplicacheReactNativeQuickSQLiteExperimentalCreateKVStore, name: 'your-project', mutators, pullInterval: null, puller:...

Anyone else working with Repliache and react-native may have also noticed that react-native-quick-sqlite has recently been deprecated, with the maintainer suggesting a migration to op-sqlite (https://github.com/ospfranco/react-native-quick-sqlite) quick-sqlite was the main...