chore: bump pkg-pr-registry-bridge publish action to latest main (#2106)#2106
Merged
Conversation
✅ Deploy Preview for viteplus-preview canceled.
|
cpojer
approved these changes
Jul 9, 2026
Contributor
Registry bridge build (
|
| Package | Version |
|---|---|
vite-plus |
0.0.0-commit.13e3b9997bd39f518d7542bccf67e83ba926ce56 |
@voidzero-dev/vite-plus-core |
0.0.0-commit.13e3b9997bd39f518d7542bccf67e83ba926ce56 |
Install the Vite+ CLI built from this commit, then migrate a project:
# macOS / Linux
curl -fsSL https://vite.plus | VP_PR_VERSION=2106 bash# Windows (PowerShell)
$env:VP_PR_VERSION="2106"; 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.13e3b9997bd39f518d7542bccf67e83ba926ce56",
"vite": "npm:@voidzero-dev/vite-plus-core@0.0.0-commit.13e3b9997bd39f518d7542bccf67e83ba926ce56"
}
}
Contributor
🐳 Docker preview imageBuilt from this PR's registry bridge build:
# remove any stale local copy from a previous run, then pull fresh
docker rmi ghcr.io/voidzero-dev/vite-plus:pr-2106 2>/dev/null; docker pull ghcr.io/voidzero-dev/vite-plus:pr-2106Quick check: docker run --rm ghcr.io/voidzero-dev/vite-plus:pr-2106 vp --versionSee docs/guide/docker.md for usage. |
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 the pinned
voidzero-dev/pkg-pr-registry-bridgepublish action inpublish-preview.ymlfrom4fbc413(bridge #60) tof57eaa9(bridge #61).The bridge removed its
PKG_PR_NEW_BASEvar and the Worker's on-demand pkg.pr.new fallback; it now serves preview artifacts only from R2. The action's inputs are unchanged and this step packs locally, so publish behavior here is identical. This just keeps the pin in sync with the deployed bridge.