From 61db78a0202bcefb816e2bb2512949371de0b66a Mon Sep 17 00:00:00 2001 From: eve0415 <40632436+eve0415@users.noreply.github.com> Date: Fri, 21 Nov 2025 08:50:10 +0900 Subject: [PATCH 1/2] fix: optimizeDeps for react-form-start --- packages/react-start/src/plugin/vite.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/react-start/src/plugin/vite.ts b/packages/react-start/src/plugin/vite.ts index 3d47aad887a..425126ab488 100644 --- a/packages/react-start/src/plugin/vite.ts +++ b/packages/react-start/src/plugin/vite.ts @@ -73,6 +73,11 @@ export function tanstackStart( ) ? ['@tanstack/react-form > @tanstack/react-store'] : []), + ...(options.optimizeDeps?.exclude?.find( + (x) => x === '@tanstack/react-form-start', + ) + ? ['@tanstack/react-form-start > @tanstack/react-store'] + : []), ], } : undefined, From a27bfbfbf651cdfcb3fb71390d8ad30c6323ba46 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 13:55:20 +0000 Subject: [PATCH 2/2] ci: apply automated fixes --- .../basic-cloudflare/worker-configuration.d.ts | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/e2e/solid-start/basic-cloudflare/worker-configuration.d.ts b/e2e/solid-start/basic-cloudflare/worker-configuration.d.ts index b0b47f39468..cb3e271c882 100644 --- a/e2e/solid-start/basic-cloudflare/worker-configuration.d.ts +++ b/e2e/solid-start/basic-cloudflare/worker-configuration.d.ts @@ -2,16 +2,19 @@ // Generated by Wrangler by running `wrangler types` (hash: b11df627d8b3c51b1bf3230a546b0f20) // Runtime types generated with workerd@1.20251118.0 2025-09-24 nodejs_compat declare namespace Cloudflare { - interface Env { - MY_VAR: "Hello from Cloudflare"; - } + interface Env { + MY_VAR: 'Hello from Cloudflare' + } } interface Env extends Cloudflare.Env {} type StringifyValues> = { - [Binding in keyof EnvType]: EnvType[Binding] extends string ? EnvType[Binding] : string; -}; + [Binding in keyof EnvType]: EnvType[Binding] extends string + ? EnvType[Binding] + : string +} declare namespace NodeJS { - interface ProcessEnv extends StringifyValues> {} + interface ProcessEnv + extends StringifyValues> {} } // Begin runtime types