Open
Conversation
- vite: ^7.1.3 → ^8.0.2 - vitest: 4.0.0-beta.8 → ^4.1.1 - @vitejs/plugin-react-swc: ^3.11.0 → ^4.3.0 - @vitejs/plugin-vue: ^6.0.1 → ^6.0.5 - @vitejs/plugin-vue-jsx: ^5.0.1 → ^5.1.5 - @tailwindcss/vite: ^4.1.12 → ^4.2.2 - vite-plugin-inspect: 11.3.2 → 12.0.0-beta.1 - vite-tsconfig-paths: ^5.1.4 → ^6.1.1 - Migrate rollupOptions to rolldownOptions in react vite config - Use catalog: for www vite dependency instead of hardcoded ^6.3.5 - Add ts-expect-error for Astro 5 / Vite 8 plugin type mismatch Co-Authored-By: Kyrie Din <iamdinq@gmail.com>
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
|
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Upgrades Vite from 7.x to 8.x across the monorepo. Vite 8 replaces the dual esbuild+Rollup architecture with Rolldown, a unified Rust-based bundler.
Catalog version bumps:
vite^7.1.3^8.0.2vitest4.0.0-beta.8^4.1.1@vitejs/plugin-react-swc^3.11.0^4.3.0@vitejs/plugin-vue^6.0.1^6.0.5@vitejs/plugin-vue-jsx^5.0.1^5.1.5@tailwindcss/vite^4.1.12^4.2.2vite-plugin-inspect11.3.212.0.0-beta.1vite-tsconfig-paths^5.1.4^6.1.1Other changes:
packages/react/vite.config.ts:rollupOptions→rolldownOptions(Vite 8 migration)apps/www/package.json: hardcoded"vite": "^6.3.5"→"vite": "catalog:"for consistencyapps/www/astro.config.ts: Added@ts-expect-errorfor Astro 5 / Vite 8 plugin type mismatch (Astro 5 internally depends on Vite 6 types)Review & Testing Checklist for Human
@storybook/react-viteand@storybook/vue3-vitev8.6.x only declarevite: ^4||^5||^6as peer deps. Verify Storybook dev servers (pnpm run dev:storybook) still work for both React and Vue packages.rolldownOptionsmigration: Verify the React package lib build output (pnpm run build --filter=@ui/react) produces correct ESM modules withpreserveModulesunder Rolldown — compare output structure/contents against the previous build.vite-plugin-inspectis at12.0.0-beta.1: This is the only version supporting Vite 8. Verify the inspect plugin still works in dev, or consider removing it if it causes issues.pnpm run devfor the www app and verify the documentation site works correctly — Astro 5 ships with Vite 6 internally, and having Vite 8 plugins injected may surface subtle runtime issues.Notes
oxlint), typecheck (tsc+astro check), build (@ui/react), and tests all pass locally.Link to Devin session: https://app.devin.ai/sessions/2266598ac0954e749ae2364408222e59
Requested by: @iamdin