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.7",
"@angular/compiler": "^20.3.7",
"@angular/core": "^20.3.7",
"@angular/platform-browser": "^20.3.7",
"@tanstack/angular-query-experimental": "^5.90.7",
"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.7",
"@angular/cli": "^20.3.7",
"@angular/compiler-cli": "^20.3.7",
Comment on lines +12 to +24
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

🔴 Critical: zone.js 0.15.1 incompatible with Angular 20.3.7.

Angular 20.3.7 requires zone.js ~0.14.x per peer dependency constraints. Version 0.15.1 will fail during npm install with peer dependency resolution errors.

Apply this diff to fix:

-    "zone.js": "0.15.1"
+    "zone.js": "^0.14.2"

This same correction needs to be applied to all other Angular example package.json files in this PR (e.g., examples/angular/pagination, infinite-query-with-max-pages, devtools-panel, etc.) to maintain consistency and prevent similar failures across the codebase.

Also applies to: 19-19

🤖 Prompt for AI Agents
In examples/angular/auto-refetching/package.json around lines 12 to 24, zone.js
is pinned to "0.15.1" which is incompatible with Angular 20.3.7; update the
dependency to a 0.14.x release (e.g., "zone.js": "~0.14.0") in this file and
apply the same change to all other Angular example package.json files in the PR
(examples/angular/pagination, infinite-query-with-max-pages, devtools-panel,
etc.) so peer dependency resolution succeeds.

"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.7",
"@angular/compiler": "^20.3.7",
"@angular/core": "^20.3.7",
"@angular/platform-browser": "^20.3.7",
Comment on lines +12 to +15
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

🔴 Critical: zone.js 0.15.1 incompatible with Angular 20.3.7.

Angular versions have peer dependency constraints on zone.js that prevent compatibility with mismatched versions. Angular 20.3.7 requires zone.js ~0.14.x; version 0.15.1 will fail npm install with ERESOLVE errors.

Apply this diff to fix:

-    "zone.js": "0.15.1"
+    "zone.js": "~0.14.2"

Apply the same correction to all other Angular example package.json files in this PR to prevent installation failures.

Also applies to: 21-21

"@tanstack/angular-query-experimental": "^5.90.7",
"@tanstack/angular-query-persist-client": "^5.62.12",
"@tanstack/query-async-storage-persister": "^5.90.7",
"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.7",
"@angular/cli": "^20.3.7",
"@angular/compiler-cli": "^20.3.7",
"typescript": "5.8.3"
}
}
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.7",
"@angular/compiler": "^20.3.7",
"@angular/core": "^20.3.7",
"@angular/platform-browser": "^20.3.7",
Comment on lines +12 to +15
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

🔴 Critical: zone.js 0.15.1 incompatible with Angular 20.3.7.

Angular versions have specific peer dependency requirements for zone.js that cause resolution failures when mismatched. Angular 20.3.7 requires zone.js ~0.14.x; version 0.15.1 will prevent npm install from succeeding.

Apply this diff to fix:

-    "zone.js": "0.15.1"
+    "zone.js": "~0.14.2"

Ensure this correction is applied consistently across all Angular example package.json files in this PR.

Also applies to: 19-19

🤖 Prompt for AI Agents
In examples/angular/basic/package.json around lines 12 to 15, zone.js version
0.15.1 is incompatible with Angular 20.3.7; update the zone.js dependency to the
Angular-compatible range (e.g., "zone.js": "~0.14.x") in this file and ensure
the same change is applied to every Angular example package.json in the PR
(including the 19-19 example), then regenerate lockfiles or run npm install to
refresh package-lock.json/Yarn lock so dependency resolution succeeds.

"@tanstack/angular-query-experimental": "^5.90.7",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.0"
"zone.js": "0.15.1"
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

🔴 CRITICAL: zone.js 0.15.1 incompatible with Angular 20.3.7.

Angular 20.3.7 requires zone.js ~0.14.x per peer dependency constraints. Version 0.15.1 (line 19) is incompatible and will fail pnpm install with peer dependency resolution errors.

This issue has been flagged in prior reviews but remains unresolved across all Angular examples in this PR.

Apply this diff to fix:

-    "zone.js": "0.15.1"
+    "zone.js": "~0.14.2"

Ensure the same correction is applied consistently to all Angular example package.json files in this PR.

Also applies to: 12-15

🤖 Prompt for AI Agents
In examples/angular/basic/package.json around line 19, zone.js is set to
"0.15.1" which is incompatible with Angular 20.3.7; change the version to a
0.14.x range (e.g., "~0.14.0") to satisfy Angular's peer dependency; make the
identical fix for all Angular example package.json files referenced in this PR
(lines/files noted as 12-15) so every Angular example uses zone.js ~0.14.x.

},
"devDependencies": {
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/build": "^20.3.7",
"@angular/cli": "^20.3.7",
"@angular/compiler-cli": "^20.3.7",
"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.7",
"@angular/compiler": "^20.3.7",
"@angular/core": "^20.3.7",
"@angular/platform-browser": "^20.3.7",
"@angular/router": "^20.3.7",
"@tanstack/angular-query-experimental": "^5.90.7",
"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.7",
"@angular/cli": "^20.3.7",
"@angular/compiler-cli": "^20.3.7",
Comment on lines +12 to +25
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

🔴 Critical: Zone.js 0.15.1 incompatible with Angular 20.3.7.

Angular 20.3.7 requires zone.js 0.14.x per peer dependency constraints. Version 0.15.1 will fail during npm install with peer dependency resolution errors.

Apply this diff to fix:

-    "zone.js": "0.15.1"
+    "zone.js": "^0.14.2"

This same correction needs to be applied to all other Angular example package.json files in this PR.

📝 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.7",
"@angular/compiler": "^20.3.7",
"@angular/core": "^20.3.7",
"@angular/platform-browser": "^20.3.7",
"@angular/router": "^20.3.7",
"@tanstack/angular-query-experimental": "^5.90.7",
"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.7",
"@angular/cli": "^20.3.7",
"@angular/compiler-cli": "^20.3.7",
"@angular/common": "^20.3.7",
"@angular/compiler": "^20.3.7",
"@angular/core": "^20.3.7",
"@angular/platform-browser": "^20.3.7",
"@angular/router": "^20.3.7",
"@tanstack/angular-query-experimental": "^5.90.7",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "^0.14.2"
},
"devDependencies": {
"@angular/build": "^20.3.7",
"@angular/cli": "^20.3.7",
"@angular/compiler-cli": "^20.3.7",
🤖 Prompt for AI Agents
In examples/angular/devtools-panel/package.json around lines 12 to 25, zone.js
is pinned to "0.15.1" which is incompatible with Angular 20.3.7; update the
zone.js dependency to a 0.14.x version (for example "0.14.0" or a caret range
"^0.14.0") to satisfy Angular's peer dependency, run a quick npm install to
verify resolution, and apply the same change to every other Angular example
package.json in this PR so all examples use zone.js 0.14.x.

"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.7",
"@angular/compiler": "^20.3.7",
"@angular/core": "^20.3.7",
"@angular/platform-browser": "^20.3.7",
"@tanstack/angular-query-experimental": "^5.90.7",
"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.7",
"@angular/cli": "^20.3.7",
"@angular/compiler-cli": "^20.3.7",
"typescript": "5.8.3"
}
}
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.7",
"@angular/compiler": "^20.3.7",
"@angular/core": "^20.3.7",
"@angular/forms": "^20.3.7",
"@angular/platform-browser": "^20.3.7",
"@tanstack/angular-query-experimental": "^5.90.7",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.0"
"zone.js": "0.15.1"
Comment on lines +12 to +20
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

🔴 Critical: zone.js 0.15.1 incompatible with Angular 20.3.7.

Angular versions have peer dependency constraints on zone.js (e.g., Angular 18.2.3 requires zone.js ~0.14.10, but zone.js ~0.15.0 causes peerDependency resolution failures). Angular 20.3.7 similarly requires zone.js ~0.14.x. This will fail npm install with ERESOLVE errors.

Apply this diff to fix:

-    "zone.js": "0.15.1"
+    "zone.js": "~0.14.2"

This same correction needs to be applied to all other Angular example package.json files in this PR (examples/angular/basic-persister, examples/angular/auto-refetching, examples/angular/basic, examples/angular/infinite-query-with-max-pages, etc.) to maintain consistency and prevent similar failures across the codebase.

🤖 Prompt for AI Agents
In examples/angular/optimistic-updates/package.json around lines 12 to 20,
zone.js is pinned to 0.15.1 which is incompatible with Angular 20.3.7; change
the zone.js version to a compatible ~0.14.x (e.g., "~0.14.10") in this
package.json. Also update the same dependency in all other Angular example
package.json files in this PR (examples/angular/basic-persister,
examples/angular/auto-refetching, examples/angular/basic,
examples/angular/infinite-query-with-max-pages, etc.) so every example uses
zone.js ~0.14.x to avoid npm ERESOLVE peerDependency failures.

},
"devDependencies": {
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/build": "^20.3.7",
"@angular/cli": "^20.3.7",
"@angular/compiler-cli": "^20.3.7",
"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.7",
"@angular/compiler": "^20.3.7",
"@angular/core": "^20.3.7",
"@angular/platform-browser": "^20.3.7",
"@tanstack/angular-query-experimental": "^5.90.7",
"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.7",
"@angular/cli": "^20.3.7",
"@angular/compiler-cli": "^20.3.7",
Comment on lines +12 to +24
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

🔴 Critical: zone.js 0.15.1 incompatible with Angular 20.3.7.

Angular 20.3.7 requires zone.js ~0.14.x per peer dependency constraints. Version 0.15.1 will fail during npm install with peer dependency resolution errors.

Apply this diff to fix:

-    "zone.js": "0.15.1"
+    "zone.js": "^0.14.2"

This same correction needs to be applied to all other Angular example package.json files in this PR (e.g., examples/angular/auto-refetching, infinite-query-with-max-pages, devtools-panel, etc.) to maintain consistency and prevent similar failures across the codebase.

Also applies to: 19-19

🤖 Prompt for AI Agents
In examples/angular/pagination/package.json lines 12 to 24, zone.js is pinned to
0.15.1 which is incompatible with Angular 20.3.7; change the zone.js dependency
to a ~0.14.x version (e.g., "~0.14.0") to satisfy Angular's peer dependency and
prevent npm install failures, and apply the same change to all other Angular
example package.json files in this PR (examples/angular/auto-refetching,
infinite-query-with-max-pages, devtools-panel, etc.) to keep them consistent.

"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.7",
"@angular/compiler": "^20.3.7",
"@angular/core": "^20.3.7",
"@angular/platform-browser": "^20.3.7",
"@angular/router": "^20.3.7",
"@tanstack/angular-query-experimental": "^5.90.7",
"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.7",
"@angular/cli": "^20.3.7",
"@angular/compiler-cli": "^20.3.7",
"typescript": "5.8.3"
}
}
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.7",
"@angular/compiler": "^20.3.7",
"@angular/core": "^20.3.7",
"@angular/platform-browser": "^20.3.7",
"@angular/router": "^20.3.7",
"@tanstack/angular-query-experimental": "^5.90.7",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.0"
"zone.js": "0.15.1"
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

🔴 Critical: Zone.js 0.15.1 incompatible with Angular 20.3.7.

Angular 20.3.7 requires zone.js ~0.14.x per peer dependency constraints. Version 0.15.1 falls outside this range and will fail during npm install with peer dependency resolution errors.

Apply this diff to fix:

-    "zone.js": "0.15.1"
+    "zone.js": "^0.14.2"
📝 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
"zone.js": "0.15.1"
"zone.js": "^0.14.2"
🤖 Prompt for AI Agents
In examples/angular/router/package.json around line 20, the dependency
"zone.js": "0.15.1" is incompatible with Angular 20.3.7; update the package.json
to use a zone.js version that satisfies Angular's peer dependency (e.g.
"zone.js": "~0.14.0"), then run npm install to regenerate the lockfile so the
dependency tree resolves correctly.

},
"devDependencies": {
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/build": "^20.3.7",
"@angular/cli": "^20.3.7",
"@angular/compiler-cli": "^20.3.7",
"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.7",
"@angular/compiler": "^20.3.7",
"@angular/core": "^20.3.7",
"@angular/forms": "^20.3.7",
"@angular/platform-browser": "^20.3.7",
"@tanstack/angular-query-experimental": "^5.90.7",
"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.7",
"@angular/cli": "^20.3.7",
"@angular/compiler-cli": "^20.3.7",
"typescript": "5.8.3"
}
}
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.7",
"@angular/compiler": "^20.3.7",
"@angular/core": "^20.3.7",
"@angular/platform-browser": "^20.3.7",
"@tanstack/angular-query-experimental": "^5.90.7",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.0"
"zone.js": "0.15.1"
Comment on lines +12 to +19
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

⚠️ Zone.js 0.15.1 incompatibility with Angular 20.3.7.

Angular 20.3.7 has peer dependency constraints requiring zone.js 0.14.x. The version bump to 0.15.1 will cause peerDependency resolution failures during installation.

This issue has been flagged in prior reviews and needs correction across all Angular examples.

Apply this diff to resolve the incompatibility:

-    "zone.js": "0.15.1"
+    "zone.js": "^0.14.2"

This same correction is required for all other Angular examples in this PR (e.g., examples/angular/infinite-query-with-max-pages, examples/angular/basic, etc.).

Also applies to: 22-24

🤖 Prompt for AI Agents
In examples/angular/simple/package.json around lines 12 to 19, the zone.js
dependency is set to 0.15.1 which is incompatible with Angular 20.3.7; change
the zone.js entry to a 0.14.x version (for example "zone.js": "^0.14.0" or
"zone.js": "0.14.x") to satisfy Angular's peerDependency constraints, and apply
the same change to all other Angular example package.json files in this PR
(e.g., examples/angular/infinite-query-with-max-pages, examples/angular/basic,
etc.).

},
"devDependencies": {
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/build": "^20.3.7",
"@angular/cli": "^20.3.7",
"@angular/compiler-cli": "^20.3.7",
"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.41.0",
"@tanstack/react-query": "^5.90.5",
"@tanstack/react-query-devtools": "^5.90.2",
"react": "^19.0.0",
Expand All @@ -18,7 +18,7 @@
"@tanstack/eslint-plugin-query": "^5.91.2",
"@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.5",
"@tanstack/react-query-devtools": "^5.90.2",
"graphql": "^16.9.0",
"graphql-request": "^7.1.2",
"graphql": "^16.11.0",
"graphql-request": "^7.3.1",
"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.2",
"@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.16",
"@vitejs/plugin-react": "^4.7.0",
"tailwindcss": "^4.1.16",
"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