@tanstack/solid-query-persist-client 5.14.1 → 5.14.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/solid-query-persist-client",
3
- "version": "5.14.1",
3
+ "version": "5.14.7",
4
4
  "description": "Solid.js bindings to work with persisters in TanStack/solid-query",
5
5
  "author": "tannerlinsley",
6
6
  "license": "MIT",
@@ -44,16 +44,16 @@
44
44
  "src"
45
45
  ],
46
46
  "dependencies": {
47
- "@tanstack/query-persist-client-core": "5.14.1"
47
+ "@tanstack/query-persist-client-core": "5.14.2"
48
48
  },
49
49
  "devDependencies": {
50
- "tsup-preset-solid": "^2.1.0",
50
+ "tsup-preset-solid": "^2.2.0",
51
51
  "vite-plugin-solid": "^2.7.2",
52
52
  "solid-js": "^1.8.1"
53
53
  },
54
54
  "peerDependencies": {
55
55
  "solid-js": "^1.6.0",
56
- "@tanstack/solid-query": "5.14.1"
56
+ "@tanstack/solid-query": "5.14.7"
57
57
  },
58
58
  "scripts": {
59
59
  "clean": "rimraf ./build && rimraf ./coverage",
@@ -325,14 +325,12 @@ describe('PersistQueryClientProvider', () => {
325
325
  staleTime: Infinity,
326
326
  }))
327
327
 
328
- createEffect(
329
- () =>
330
- states.push({
331
- status: state.status,
332
- fetchStatus: state.fetchStatus,
333
- data: state.data,
334
- }),
335
- console.log(state.data),
328
+ createEffect(() =>
329
+ states.push({
330
+ status: state.status,
331
+ fetchStatus: state.fetchStatus,
332
+ data: state.data,
333
+ }),
336
334
  )
337
335
 
338
336
  return (