@tanstack/react-query-persist-client 5.102.8 → 5.103.1

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.
Files changed (1) hide show
  1. package/package.json +12 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/react-query-persist-client",
3
- "version": "5.102.8",
3
+ "version": "5.103.1",
4
4
  "description": "React bindings to work with persisters in TanStack/react-query",
5
5
  "author": "tannerlinsley",
6
6
  "license": "MIT",
@@ -40,7 +40,7 @@
40
40
  "!src/__tests__"
41
41
  ],
42
42
  "dependencies": {
43
- "@tanstack/query-persist-client-core": "5.102.8"
43
+ "@tanstack/query-persist-client-core": "5.103.1"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@testing-library/react": "^16.1.0",
@@ -49,23 +49,23 @@
49
49
  "npm-run-all2": "^5.0.0",
50
50
  "react": "^19.2.1",
51
51
  "@tanstack/query-test-utils": "0.0.0",
52
- "@tanstack/react-query": "5.102.8"
52
+ "@tanstack/react-query": "5.103.1"
53
53
  },
54
54
  "peerDependencies": {
55
55
  "react": "^18 || ^19",
56
- "@tanstack/react-query": "^5.102.8"
56
+ "@tanstack/react-query": "^5.103.1"
57
57
  },
58
58
  "scripts": {
59
- "clean": "premove ./build ./coverage ./dist-ts",
60
- "compile": "tsc --build",
59
+ "clean": "premove ./build ./coverage ./dist-ts ./.cache/test-types",
60
+ "compile": "tsc --project tsconfig.json",
61
61
  "test:eslint": "eslint --concurrency=auto ./src",
62
62
  "test:types": "npm-run-all --serial test:types:*",
63
- "test:types:ts56": "node ../../node_modules/typescript56/lib/tsc.js --build tsconfig.legacy.json",
64
- "test:types:ts57": "node ../../node_modules/typescript57/lib/tsc.js --build tsconfig.legacy.json",
65
- "test:types:ts58": "node ../../node_modules/typescript58/lib/tsc.js --build tsconfig.legacy.json",
66
- "test:types:ts59": "node ../../node_modules/typescript59/lib/tsc.js --build tsconfig.legacy.json",
67
- "test:types:tscurrent": "tsc --build",
68
- "test:types:ts70": "node ../../node_modules/typescript70/lib/tsc.js --build tsconfig.legacy.json",
63
+ "test:types:ts56": "node ../../node_modules/typescript56/lib/tsc.js --project tsconfig.legacy.json --outDir .cache/test-types/ts56 --tsBuildInfoFile .cache/test-types/ts56.tsbuildinfo",
64
+ "test:types:ts57": "node ../../node_modules/typescript57/lib/tsc.js --project tsconfig.legacy.json --outDir .cache/test-types/ts57 --tsBuildInfoFile .cache/test-types/ts57.tsbuildinfo",
65
+ "test:types:ts58": "node ../../node_modules/typescript58/lib/tsc.js --project tsconfig.legacy.json --outDir .cache/test-types/ts58 --tsBuildInfoFile .cache/test-types/ts58.tsbuildinfo",
66
+ "test:types:ts59": "node ../../node_modules/typescript59/lib/tsc.js --project tsconfig.legacy.json --outDir .cache/test-types/ts59 --tsBuildInfoFile .cache/test-types/ts59.tsbuildinfo",
67
+ "test:types:tscurrent": "tsc --project tsconfig.json --outDir .cache/test-types/tscurrent --tsBuildInfoFile .cache/test-types/tscurrent.tsbuildinfo",
68
+ "test:types:ts70": "node ../../node_modules/typescript70/lib/tsc.js --project tsconfig.legacy.json --outDir .cache/test-types/ts70 --tsBuildInfoFile .cache/test-types/ts70.tsbuildinfo",
69
69
  "test:lib": "vitest --retry=3",
70
70
  "test:lib:dev": "pnpm run test:lib --watch",
71
71
  "test:build": "publint --strict && attw --pack",