Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Upgrades the Vue tooling in this repo (templates, playground, and packages) to Vite 8, including related dependency and config updates to accommodate Vite’s updated bundling pipeline.
Changes:
- Bump Vite/Vitest and related plugins (templates + root workspace deps) for Vite 8 compatibility.
- Migrate build config usage from
rollupOptionstorolldownOptionsin multiple Vite configs, adjusting code-splitting/entry behavior. - Update TS
moduleResolutionto"bundler"where needed and adjust CI Node setup.
Reviewed changes
Copilot reviewed 13 out of 15 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| templates/Coalesce.Vue.Template/content/Coalesce.Starter.Vue.Web/vite.config.ts | Switches build config to rolldownOptions and revises code-splitting strategy. |
| templates/Coalesce.Vue.Template/content/Coalesce.Starter.Vue.Web/package.json | Updates Vite/Vitest + related devDependencies for Vite 8. |
| templates/Coalesce.Vue.Template/content/Coalesce.Starter.Vue.Web/package-lock.json | Lockfile refresh for the template’s dependency upgrades. |
| src/coalesce-vue/tsconfig.json | Updates TS module resolution to bundler. |
| src/coalesce-vue/src/build.ts | Adds explicit node:process import. |
| src/coalesce-vue-vuetify3/vite.config.ts | Moves to rolldownOptions and changes library build to multi-entry output. |
| src/coalesce-vue-vuetify3/src/build.ts | Updates the component resolver to map component names to direct subpath imports. |
| src/coalesce-vue-vuetify3/package.json | Updates package entry points/exports to align with new build output naming. |
| playground/Coalesce.Web.Vue3/vite.config.ts | Switches build config to rolldownOptions and disables vite-plugin-inspect. |
| playground/Coalesce.Web.Vue3/tsconfig.json | Updates TS module resolution to bundler. |
| playground/Coalesce.Web.Vue3/package.json | Removes vite-plugin-inspect, bumps vuetify plugin, and changes coalesce script framework target. |
| package.json | Updates root workspace Vite/Vitest deps for Vite 8. |
| .vscode/settings.json | Adds “rolldown” to cSpell dictionary. |
| .github/workflows/part-build.yml | Adds Node setup for the build-coalesce-vue-vuetify3 job. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
templates/Coalesce.Vue.Template/content/Coalesce.Starter.Vue.Web/vite.config.ts
Outdated
Show resolved
Hide resolved
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.
Upgrades across the board to utilize Vite 8