Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions examples/angular/auto-refetching/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
},
"private": true,
"dependencies": {
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/platform-browser": "^20.0.0",
"@angular/common": "^20.3.4",
"@angular/compiler": "^20.3.4",
"@angular/core": "^20.3.4",
"@angular/platform-browser": "^20.3.4",
"@tanstack/angular-query-experimental": "^5.90.2",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.0"
"zone.js": "0.15.1"
},
"devDependencies": {
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"typescript": "5.8.3"
}
}
16 changes: 8 additions & 8 deletions examples/angular/basic-persister/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@
},
"private": true,
"dependencies": {
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/platform-browser": "^20.0.0",
"@angular/common": "^20.3.4",
"@angular/compiler": "^20.3.4",
"@angular/core": "^20.3.4",
"@angular/platform-browser": "^20.3.4",
"@tanstack/angular-query-experimental": "^5.90.2",
"@tanstack/angular-query-persist-client": "^5.62.7",
"@tanstack/query-async-storage-persister": "^5.90.2",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.0"
"zone.js": "0.15.1"
},
"devDependencies": {
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"typescript": "5.8.3"
}
Comment on lines +24 to 28
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

Raise TypeScript to a version supported by Angular 20.3.x

After bumping @angular/* and @angular/cli/build, TS 5.8.3 likely falls outside peer bounds. Update and re-lock to avoid install/build errors.

-    "typescript": "5.8.3"
+    "typescript": "^5.9.0"

Confirm the exact peer range:


🌐 Web query:

What TypeScript versions are supported by Angular CLI/build 20.3.x?

💡 Result:

Angular 20.3.x supports TypeScript >= 5.9.0 and < 6.0.0. [1][2]

Sources:
[1] angular.dev — Version compatibility table for v20. (TypeScript: >=5.9.0 <6.0.0).
[2] angular/angular-cli release notes — @angular/build: "TypeScript versions older than 5.9 are no longer supported."


Update TypeScript to match Angular 20.3.x peer range

Angular 20.3.x requires TypeScript >=5.9.0 <6.0.0. Bump in package.json:

-    "typescript": "5.8.3"
+    "typescript": "^5.9.0"
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"typescript": "5.8.3"
}
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"typescript": "^5.9.0"
}
🤖 Prompt for AI Agents
In examples/angular/basic-persister/package.json around lines 24 to 28, the
TypeScript version is pinned to 5.8.3 which is incompatible with Angular 20.3.x
peer requirements (>=5.9.0 <6.0.0); update the typescript entry to a compatible
range such as "typescript": "^5.9.0" (or any 5.9.x exact version) in
package.json, then run the package manager install to update lockfiles and
verify the project builds.

}
16 changes: 8 additions & 8 deletions examples/angular/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
},
"private": true,
"dependencies": {
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/platform-browser": "^20.0.0",
"@angular/common": "^20.3.4",
"@angular/compiler": "^20.3.4",
"@angular/core": "^20.3.4",
"@angular/platform-browser": "^20.3.4",
"@tanstack/angular-query-experimental": "^5.90.2",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.0"
"zone.js": "0.15.1"
},
"devDependencies": {
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"typescript": "5.8.3"
}
}
18 changes: 9 additions & 9 deletions examples/angular/devtools-panel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@
},
"private": true,
"dependencies": {
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/platform-browser": "^20.0.0",
"@angular/router": "^20.0.0",
"@angular/common": "^20.3.4",
"@angular/compiler": "^20.3.4",
"@angular/core": "^20.3.4",
"@angular/platform-browser": "^20.3.4",
"@angular/router": "^20.3.4",
"@tanstack/angular-query-experimental": "^5.90.2",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.0"
"zone.js": "0.15.1"
},
"devDependencies": {
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"typescript": "5.8.3"
}
}
16 changes: 8 additions & 8 deletions examples/angular/infinite-query-with-max-pages/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
"watch": "ng build --watch --configuration development"
},
"dependencies": {
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/platform-browser": "^20.0.0",
"@angular/common": "^20.3.4",
"@angular/compiler": "^20.3.4",
"@angular/core": "^20.3.4",
"@angular/platform-browser": "^20.3.4",
"@tanstack/angular-query-experimental": "^5.90.2",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.0"
"zone.js": "0.15.1"
},
"devDependencies": {
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"typescript": "5.8.3"
}
Comment on lines +22 to 26
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

Bump TypeScript to meet Angular 20.3.5 peers

TypeScript 5.8.3 is below the supported range for @angular/cli/build 20.3.5. Update and re-lock dependencies.

-    "typescript": "5.8.3"
+    "typescript": "^5.9.0"

Verify the precise TS peer window:


🌐 Web query:

What TypeScript versions are supported by Angular CLI/build 20.3.x?

💡 Result:

Angular 20.3.x supports TypeScript >= 5.9.0 and < 6.0.0 (i.e., TypeScript 5.9.x). [1]

Sources
[1] Angular — Version compatibility (TypeScript requirements for v20.2.x / v20.3.x).


Update TypeScript to ^5.9.0 in package.json

Angular 20.3.x requires TypeScript ≥5.9.0 <6.0.0.

-    "typescript": "5.8.3"
+    "typescript": "^5.9.0"
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"typescript": "5.8.3"
}
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"typescript": "^5.9.0"
}
🤖 Prompt for AI Agents
In examples/angular/infinite-query-with-max-pages/package.json around lines 22
to 26, the project pins TypeScript to 5.8.3 which is incompatible with Angular
20.3.x; update the TypeScript dependency to a version satisfying >=5.9.0 <6.0.0
(e.g. change "typescript": "5.8.3" to "typescript": "^5.9.0"), then run npm
install and verify the project builds/tests successfully.

}
18 changes: 9 additions & 9 deletions examples/angular/optimistic-updates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@
},
"private": true,
"dependencies": {
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/forms": "^20.0.0",
"@angular/platform-browser": "^20.0.0",
"@angular/common": "^20.3.4",
"@angular/compiler": "^20.3.4",
"@angular/core": "^20.3.4",
"@angular/forms": "^20.3.4",
"@angular/platform-browser": "^20.3.4",
"@tanstack/angular-query-experimental": "^5.90.2",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.0"
"zone.js": "0.15.1"
},
"devDependencies": {
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"typescript": "5.8.3"
}
}
16 changes: 8 additions & 8 deletions examples/angular/pagination/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
"watch": "ng build --watch --configuration development"
},
"dependencies": {
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/platform-browser": "^20.0.0",
"@angular/common": "^20.3.4",
"@angular/compiler": "^20.3.4",
"@angular/core": "^20.3.4",
"@angular/platform-browser": "^20.3.4",
"@tanstack/angular-query-experimental": "^5.90.2",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.0"
"zone.js": "0.15.1"
},
"devDependencies": {
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"typescript": "5.8.3"
}
}
18 changes: 9 additions & 9 deletions examples/angular/query-options-from-a-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@
},
"private": true,
"dependencies": {
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/platform-browser": "^20.0.0",
"@angular/router": "^20.0.0",
"@angular/common": "^20.3.4",
"@angular/compiler": "^20.3.4",
"@angular/core": "^20.3.4",
"@angular/platform-browser": "^20.3.4",
"@angular/router": "^20.3.4",
"@tanstack/angular-query-experimental": "^5.90.2",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.0"
"zone.js": "0.15.1"
},
"devDependencies": {
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"typescript": "5.8.3"
}
Comment on lines +12 to 27
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

Bump TypeScript to match Angular 20.3 peer requirements

All Angular deps just moved to 20.3.x, but @angular/cli@20.3.5 and friends declare a peer range of >=5.9.0 <6.0.0. Keeping typescript at 5.8.3 violates that requirement and will cause peer‑dependency failures (pnpm) or unsupported builds. Please raise the version to something like ^5.9.0 (or newer within <6.0.0) so this example stays installable.

   "devDependencies": {
     "@angular/build": "^20.3.5",
     "@angular/cli": "^20.3.5",
     "@angular/compiler-cli": "^20.3.4",
-    "typescript": "5.8.3"
+    "typescript": "^5.9.0"
   }

🌐 Web query:

For @angular/cli 20.3.5, what TypeScript version range is required?

💡 Result:

@angular/cli 20.3.5 requires TypeScript >=5.9.0 and <6.0.0. [1]

Sources
[1] Angular — Version compatibility (TypeScript requirement for v20.2.x / v20.3.x).


Bump TypeScript to satisfy Angular 20.3 peer range
@angular/cli@20.3.5 requires TS >=5.9.0 <6.0.0; update examples/angular/query-options-from-a-service/package.json devDependencies.

   "devDependencies": {
     "@angular/build": "^20.3.5",
     "@angular/cli": "^20.3.5",
     "@angular/compiler-cli": "^20.3.4",
-    "typescript": "5.8.3"
+    "typescript": "^5.9.0"
   }
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
"@angular/common": "^20.3.4",
"@angular/compiler": "^20.3.4",
"@angular/core": "^20.3.4",
"@angular/platform-browser": "^20.3.4",
"@angular/router": "^20.3.4",
"@tanstack/angular-query-experimental": "^5.90.2",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.0"
"zone.js": "0.15.1"
},
"devDependencies": {
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"typescript": "5.8.3"
}
"@angular/common": "^20.3.4",
"@angular/compiler": "^20.3.4",
"@angular/core": "^20.3.4",
"@angular/platform-browser": "^20.3.4",
"@angular/router": "^20.3.4",
"@tanstack/angular-query-experimental": "^5.90.2",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.1"
},
"devDependencies": {
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"typescript": "^5.9.0"
}
🤖 Prompt for AI Agents
In examples/angular/query-options-from-a-service/package.json around lines 12 to
27, the devDependency for TypeScript is pinned to 5.8.3 which is incompatible
with @angular/cli@20.3.5; update the "typescript" entry in devDependencies to a
version satisfying Angular 20.3's peer range (>=5.9.0 <6.0.0), e.g. set
"typescript" to "^5.9.0" (or a specific 5.9.x patch) so the peer requirement is
met.

}
18 changes: 9 additions & 9 deletions examples/angular/router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@
},
"private": true,
"dependencies": {
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/platform-browser": "^20.0.0",
"@angular/router": "^20.0.0",
"@angular/common": "^20.3.4",
"@angular/compiler": "^20.3.4",
"@angular/core": "^20.3.4",
"@angular/platform-browser": "^20.3.4",
"@angular/router": "^20.3.4",
"@tanstack/angular-query-experimental": "^5.90.2",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.0"
"zone.js": "0.15.1"
},
"devDependencies": {
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"typescript": "5.8.3"
}
}
18 changes: 9 additions & 9 deletions examples/angular/rxjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@
"watch": "ng build --watch --configuration development"
},
"dependencies": {
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/forms": "^20.0.0",
"@angular/platform-browser": "^20.0.0",
"@angular/common": "^20.3.4",
"@angular/compiler": "^20.3.4",
"@angular/core": "^20.3.4",
"@angular/forms": "^20.3.4",
"@angular/platform-browser": "^20.3.4",
"@tanstack/angular-query-experimental": "^5.90.2",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.0"
"zone.js": "0.15.1"
},
"devDependencies": {
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"typescript": "5.8.3"
Comment on lines 22 to 26
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

Update TypeScript to satisfy Angular 20.3.x peers

With @angular/cli/build 20.3.5, TypeScript 5.8.3 is outside the supported peer range. Bump TS and refresh the lockfile to avoid peer install/build failures.

Apply:

-    "typescript": "5.8.3"
+    "typescript": "^5.9.0"

Verify the exact supported TS range for Angular 20.3.x:


🌐 Web query:

What TypeScript versions are supported by Angular CLI/build 20.3.x?

💡 Result:

Angular 20.3.x requires TypeScript >=5.9.0 and <6.0.0 (i.e. TypeScript 5.9.x). [1][2]

Sources:
[1] Angular version compatibility table — angular.dev.
[2] angular/angular-cli release notes (20.3.0) — GitHub.


Bump TypeScript to v5.9.x
Angular 20.3.x requires TypeScript ≥5.9.0 <6.0.0. Update in examples/angular/rxjs/package.json:

-    "typescript": "5.8.3"
+    "typescript": "^5.9.0"

Run your package manager to regenerate the lockfile.

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
"devDependencies": {
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"typescript": "5.8.3"
"devDependencies": {
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"typescript": "^5.9.0"
🤖 Prompt for AI Agents
In examples/angular/rxjs/package.json around lines 22 to 26 the TypeScript
devDependency is pinned to 5.8.3 which is incompatible with Angular 20.3.x;
update the "typescript" entry to a 5.9.x range that satisfies >=5.9.0 <6.0.0
(e.g. "^5.9.0") and then run your package manager (npm/yarn/pnpm) to install and
regenerate the lockfile.

}
}
16 changes: 8 additions & 8 deletions examples/angular/simple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
},
"private": true,
"dependencies": {
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/platform-browser": "^20.0.0",
"@angular/common": "^20.3.4",
"@angular/compiler": "^20.3.4",
"@angular/core": "^20.3.4",
"@angular/platform-browser": "^20.3.4",
"@tanstack/angular-query-experimental": "^5.90.2",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.0"
"zone.js": "0.15.1"
},
"devDependencies": {
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/build": "^20.3.5",
"@angular/cli": "^20.3.5",
"@angular/compiler-cli": "^20.3.4",
"typescript": "5.8.3"
}
}
4 changes: 2 additions & 2 deletions examples/react/algolia/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"preview": "vite preview"
},
"dependencies": {
"@algolia/client-search": "5.2.1",
"@algolia/client-search": "5.40.0",
"@tanstack/react-query": "^5.90.2",
"@tanstack/react-query-devtools": "^5.90.2",
"react": "^19.0.0",
Expand All @@ -18,7 +18,7 @@
"@tanstack/eslint-plugin-query": "^5.91.0",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^4.7.0",
"typescript": "5.8.3",
"vite": "^6.3.6"
}
Expand Down
6 changes: 3 additions & 3 deletions examples/react/basic-graphql-request/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
"dependencies": {
"@tanstack/react-query": "^5.90.2",
"@tanstack/react-query-devtools": "^5.90.2",
"graphql": "^16.9.0",
"graphql-request": "^7.1.2",
"graphql": "^16.11.0",
"graphql-request": "^7.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^4.7.0",
"vite": "^6.3.6"
}
}
2 changes: 1 addition & 1 deletion examples/react/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@tanstack/eslint-plugin-query": "^5.91.0",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^4.7.0",
"typescript": "5.8.3",
"vite": "^6.3.6"
},
Expand Down
6 changes: 3 additions & 3 deletions examples/react/chat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"react-dom": "^19.0.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.14",
"@vitejs/plugin-react": "^4.3.4",
"tailwindcss": "^4.0.14",
"@tailwindcss/vite": "^4.1.14",
"@vitejs/plugin-react": "^4.7.0",
"tailwindcss": "^4.1.14",
"typescript": "5.8.3",
"vite": "^6.3.6"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/react/default-query-function/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"react-dom": "^19.0.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^4.7.0",
"typescript": "5.8.3",
"vite": "^6.3.6"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/react/devtools-panel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"react-dom": "^19.0.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react": "^4.7.0",
"typescript": "5.8.3",
"vite": "^6.3.6"
}
Expand Down
Loading
Loading