MAINT: Bump vite to 8.0.14 + bundle frontend dep bumps (closes #1848, #1849)#1847
Merged
Merged
Conversation
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 7.3.2 to 8.0.14. - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v8.0.14/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 8.0.14 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [jest-environment-jsdom](https://github.com/jestjs/jest/tree/HEAD/packages/jest-environment-jsdom) from 29.7.0 to 30.4.1. - [Release notes](https://github.com/jestjs/jest/releases) - [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/jestjs/jest/commits/v30.4.1/packages/jest-environment-jsdom) --- updated-dependencies: - dependency-name: jest-environment-jsdom dependency-version: 30.4.1 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) from 4.7.0 to 6.0.2. - [Release notes](https://github.com/vitejs/vite-plugin-react/releases) - [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@6.0.2/packages/plugin-react) --- updated-dependencies: - dependency-name: "@vitejs/plugin-react" dependency-version: 6.0.2 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [eslint](https://github.com/eslint/eslint) from 9.39.1 to 10.4.1. - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](eslint/eslint@v9.39.1...v10.4.1) --- updated-dependencies: - dependency-name: eslint dependency-version: 10.4.1 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
…nment-jsdom-30.4.1
…lity ESLint 10 removed FlatESLint from its public API, which breaks @typescript-eslint/utils <8.57. Bump @typescript-eslint/eslint-plugin and parser to 8.60.0 (first stable line that lists eslint ^10.0.0 as a supported peer) and @eslint/js to 10.0.1 to match the new eslint major. Also fix a no-useless-assignment violation newly reported by @eslint/js@10's recommended config in messageMapper.ts (the initial '' on base64Value was overwritten in every branch). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Resolved conflicts in frontend/package.json and frontend/package-lock.json: kept @eslint/js@10.0.1 (required for ESLint 10) and took main's @playwright/test@1.60.0. Lockfile regenerated via npm install. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…n with PR #1846 dep bumps)
# Conflicts: # frontend/package-lock.json
# Conflicts: # frontend/package-lock.json
# Conflicts: # frontend/package-lock.json # frontend/package.json
After merging PRs #1848 (jest-environment-jsdom), #1849 (@vitejs/plugin-react), and #1850 (eslint) into the vite 8 bump branch, the lockfile is regenerated with pm install to produce a single consistent tree. Vite 8 migrated from esbuild to Rolldown for dependency pre-bundling, which required two config changes in vite.config.ts: - optimizeDeps.esbuildOptions renamed to optimizeDeps.rolldownOptions - build.rollupOptions.output.manualChunks must be a function, not an object Because vite no longer pulls in esbuild transitively, ts-jest can no longer compile the .ts AST transformer at runtime. esbuild is added as an explicit devDependency to restore that capability. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…rn/frontend/vite-8.0.14 # Conflicts: # frontend/package-lock.json # frontend/package.json
romanlutz
approved these changes
May 31, 2026
This was referenced May 31, 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.
Bumps frontend dependencies. The original dependabot vite 8 bump can't land cleanly in isolation because vite 8's switch from esbuild to Rolldown also requires updates to
vite.config.tsandts-jest's toolchain. While we were there, this PR also rolls in the other open dependabot frontend PRs so the lockfile only needs to be regenerated once.Dependency bumps in this PR
vitejest-environment-jsdom@vitejs/plugin-reacteslint@eslint/js@typescript-eslint/eslint-plugin@typescript-eslint/parsereslint-plugin-react-refreshesbuildVite 8 / Rolldown migration changes (
frontend/vite.config.ts)Vite 8 replaces esbuild with Rolldown for dependency pre-bundling, which required two breaking-change fixes:
optimizeDeps.esbuildOptions→optimizeDeps.rolldownOptionsbuild.rollupOptions.output.manualChunksmust be a function instead of an object — converted to a function that matches the previous splits (react-vendorandfluent-vendor).New
esbuilddevDependencyBecause vite 8 no longer pulls esbuild in transitively,
ts-jestcan no longer dynamically compile the.tsAST transformer (jest-import-meta-transformer.ts) at test time andnpm testfails withUnable to load the module "esbuild". Addingesbuildas an explicit devDependency restores the test suite.Verification
Locally on this branch:
npm run type-checknpm run build(vite 8.0.14, ~700ms)npm run lintnpm test— 28 suites / 614 tests passing