feat(cli): tsup -> tsdown -> Vite+ migration - #2434
Open
KTrain5169 wants to merge 9 commits into
Open
Conversation
✅ Deploy Preview for viteplus-preview ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
KTrain5169
marked this pull request as ready for review
August 13, 2026 06:45
Contributor
Registry bridge build (
|
| Package | Version |
|---|---|
vite-plus |
0.0.0-commit.2c857991cf429f3636b5ac65acfe2eff2deed30e |
@voidzero-dev/vite-plus-core |
0.0.0-commit.2c857991cf429f3636b5ac65acfe2eff2deed30e |
Install the Vite+ CLI built from this commit, then migrate a project:
# macOS / Linux
curl -fsSL https://vite.plus | VP_PR_VERSION=2434 bash# Windows (PowerShell)
$env:VP_PR_VERSION="2434"; irm https://vite.plus/ps1 | iexAfter installing, upgrade the current project's vite-plus to this test build with:
vp migrateOr point your package manager at the bridge registry https://registry-bridge.viteplus.dev/:
| Package manager | Registry config |
|---|---|
| npm / pnpm / Bun | .npmrc: registry=https://registry-bridge.viteplus.dev/ |
| Yarn (v2+) | .yarnrc.yml: npmRegistryServer: "https://registry-bridge.viteplus.dev/" |
Then pin the build (vite aliases to vite-plus-core; pnpm can use a catalog, npm an overrides entry):
{
"devDependencies": {
"vite-plus": "0.0.0-commit.2c857991cf429f3636b5ac65acfe2eff2deed30e",
"vite": "npm:@voidzero-dev/vite-plus-core@0.0.0-commit.2c857991cf429f3636b5ac65acfe2eff2deed30e"
}
}
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.
This PR adds a new step in the
vp migrateflow: migratetsup.config.tsconfigurations into Vite+ by using thetsdown-migratetool.Resolves #2101
Blockers
I'm currently blocked bypinning to RC for now but I'll edit it later to unpin from RCtsdown-migraterequiring TTY and immediately crashing without it, so for now this PR will remain drafted. Once a new version oftsdown-migratewith support for non-TTY terminals has landed, I'll continue working on this PR.