4.2.3
Fixed 1
- Remove @sveltejs/kit from peer dependencies to prevent ERESOLVE errors in non-SvelteKit projects using Vite 7
Patch Changes
- #442
622d56eThanks @dferber90! - Remove@sveltejs/kitfrom peer dependencies. It was declared as an optional peer with a"*"range, which caused npm to auto-install the newest@sveltejs/kitand drag in its transitive@sveltejs/vite-plugin-svelte→vitepeer chain. In non-SvelteKit projects already on Vite 7 (via Vitest, Storybook, etc.) this produced a hardERESOLVEerror requiringnpm install --force. SvelteKit consumers always have@sveltejs/kitinstalled as the framework, so theflags/sveltekitentrypoint continues to resolve it from their own tree.