From 320d7bd8e633d47d78846208142c4683edc3c3c3 Mon Sep 17 00:00:00 2001 From: Dhavanesh V Date: Tue, 27 Jan 2026 18:19:27 +0530 Subject: [PATCH 1/2] fix(examples/react/start): 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. --- examples/react/start/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/react/start/package.json b/examples/react/start/package.json index ddb0e94e..2649f4a7 100644 --- a/examples/react/start/package.json +++ b/examples/react/start/package.json @@ -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", From d35a68f12d7289aaea653a09e160cdd80237e051 Mon Sep 17 00:00:00 2001 From: Dhavanesh V Date: Tue, 27 Jan 2026 18:36:10 +0530 Subject: [PATCH 2/2] chore: add changeset for npm-sandbox-compat fix Replace 'workspace:*' dependency with fixed version for compatibility with npm-based sandboxes. This change resolves installation issues in cloud-based environments. --- .changeset/npm-sandbox-compat.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .changeset/npm-sandbox-compat.md diff --git a/.changeset/npm-sandbox-compat.md b/.changeset/npm-sandbox-compat.md new file mode 100644 index 00000000..142febe2 --- /dev/null +++ b/.changeset/npm-sandbox-compat.md @@ -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.