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
11 changes: 11 additions & 0 deletions .changeset/npm-sandbox-compat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
"start": patch
---

Make react-start example compatible with npm-based sandboxes

Replace the 'workspace:*' dependency reference with a fixed version (^0.4.0) for @tanstack/devtools-event-client in the react/start example.

The workspace:* reference was incompatible with npm-based sandboxes like StackBlitz and CodeSandbox, causing pnpm install failures with 'ERR_PNPM_OUTDATED_LOCKFILE' error.

This change allows the example to be used in cloud-based development environments while maintaining version compatibility.
2 changes: 1 addition & 1 deletion examples/react/start/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"dependencies": {
"@tailwindcss/vite": "^4.0.6",
"@tanstack/devtools-event-client": "workspace:*",
"@tanstack/devtools-event-client": "^0.4.0",
"@tanstack/react-devtools": "^0.9.3",
"@tanstack/react-router": "^1.132.0",
"@tanstack/react-router-devtools": "^1.132.0",
Expand Down