Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1651 +/- ##
===========================================
+ Coverage 47.81% 72.56% +24.75%
===========================================
Files 382 408 +26
Lines 8525 12265 +3740
Branches 3159 3518 +359
===========================================
+ Hits 4076 8900 +4824
+ Misses 3070 2345 -725
+ Partials 1379 1020 -359
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Migrate from Vite 7 to Vite 8, which replaces esbuild + Rollup with Rolldown + Oxc for bundling, transforms, and minification. Dependency changes: - vite 7.3.1 → 8.0.8 - @vitejs/plugin-react 5.1.4 → 6.0.1 - @tailwindcss/vite 4.2.1 → 4.2.2 - babel-plugin-react-compiler 19.1.0-rc.3 → 1.0.0 - vitest / @vitest/coverage-v8 4.0.18 → 4.1.4 - Add @rolldown/plugin-babel 0.2.2 - Remove vite-tsconfig-paths (now built-in) Config changes: - Replace vite-tsconfig-paths plugin with resolve.tsconfigPaths: true - Move React Compiler to separate @rolldown/plugin-babel plugin with reactCompilerPreset, since @vitejs/plugin-react v6 removed built-in Babel support - Remove unnecessary /// <reference types="vitest" /> directive Resolves aws#1647
arseny-kostenko
approved these changes
Apr 9, 2026
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.
Description
Migrate from Vite 7 to Vite 8, which replaces esbuild + Rollup with Rolldown + Oxc for bundling, transforms, and minification.
Dependency changes
vite^7.3.1→^8.0.0@vitejs/plugin-react^5.1.4→^6.0.0(drops built-in Babel)@tailwindcss/vite^4.2.1→^4.2.2(Vite 8 peer dep)babel-plugin-react-compiler19.1.0-rc.3→^1.0.0(stable release)vitest/@vitest/coverage-v84.0.18→4.1.2(Vite 8 peer dep)@rolldown/plugin-babel0.2.2(React Compiler now requires a separate Babel plugin)vite-tsconfig-paths(Vite 8 supports tsconfig paths natively)Config changes
vite-tsconfig-pathsplugin withresolve: { tsconfigPaths: true }@rolldown/plugin-babelwithreactCompilerPreset(), since@vitejs/plugin-reactv6 removed built-in Babel support/// <reference types="vitest" />directiveBuild comparison
Note: The build emits a timing warning for
@rolldown/plugin-babelsince the React Compiler does non-trivial transforms. This is expected.Migration guide
https://vite.dev/guide/migration
Validation
Related Issues
Check List
pnpm checkspasses with no errors.pnpm testpasses with no failures.