Uh oh!
There was an error while loading. Please reload this page.
feat: add vpr as standalone shorthand for vp run - #1178
Merged
Conversation
✅ Deploy Preview for viteplus-preview canceled.
|
MemberAuthor
How to use the Graphite Merge QueueAdd the label auto-merge to this PR to add it to the merge queue. You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
This was referenced Mar 28, 2026
fengmk2force-pushed
the
fix-vitest-globals
branch
from
March 29, 2026 11:36
fd1b75e to
7c58334Comparefengmk2force-pushed
the
fix-vitest-globals
branch
from
March 29, 2026 14:52
7c58334 to
dfc2d61Comparegraphite-appBot
changed the base branch from
fix-vitest-globals
to
graphite-base/1178March 29, 2026 15:33
graphite-appBotforce-pushed
the
graphite-base/1178
branch
from
March 29, 2026 15:43
dfc2d61 to
33fbc2cComparegraphite-appBotforce-pushed
the
vp-run-alias-vpr
branch
from
March 29, 2026 15:43
442164a to
959f493Comparegraphite-appBotforce-pushed
the
vp-run-alias-vpr
branch
from
March 29, 2026 15:43
959f493 to
cf48911Comparefengmk2
marked this pull request as ready for review
March 30, 2026 02:43
fengmk2force-pushed
the
vp-run-alias-vpr
branch
3 times, most recently
from
March 30, 2026 07:40
cb20872 to
834d8e5CompareMerge activity
|
Add `vpr` as a shim binary that acts as a shorthand for `vp run`, following the same pattern as `vpx` (shorthand for `vp exec`). When invoked, `vpr` delegates to the same run-or-delegate logic: local vite-plus CLI when vite-plus is a dependency, otherwise falls back to `<pm> run`. - Add vpr command module with execute_vpr entry point - Add vpr detection in shim/mod.rs detect_shim_tool() - Add vpr dispatch in shim/dispatch.rs - Add vpr to SHIM_TOOLS in env setup and doctor - Update tip message to mention vpr shorthand - Update run guide, run RFC, and trampoline RFC docs
graphite-appBotforce-pushed
the
vp-run-alias-vpr
branch
from
March 30, 2026 08:20
834d8e5 to
acee8b6CompareUh oh!
There was an error while loading. Please reload this page.
fengmk2 pushed a commit
that referenced
this pull request
Mar 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 freeto 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.

Add
vpras a shim binary that acts as a shorthand forvp run,following the same pattern as
vpx(shorthand forvp exec).When invoked,
vprdelegates to the same run-or-delegate logic:local vite-plus CLI when vite-plus is a dependency, otherwise
falls back to
<pm> run.