feat: add vpr as standalone shorthand for vp run#1178
Merged
Conversation
✅ Deploy Preview for viteplus-preview canceled.
|
Member
Author
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. |
fengmk2
force-pushed
the
vp-run-alias-vpr
branch
from
March 28, 2026 08:40
c6e7de2 to
8616f4e
Compare
This was referenced Mar 28, 2026
fengmk2
force-pushed
the
vp-run-alias-vpr
branch
from
March 29, 2026 11:36
8616f4e to
ba3a258
Compare
fengmk2
force-pushed
the
fix-vitest-globals
branch
from
March 29, 2026 11:36
fd1b75e to
7c58334
Compare
fengmk2
force-pushed
the
vp-run-alias-vpr
branch
from
March 29, 2026 14:52
ba3a258 to
442164a
Compare
fengmk2
force-pushed
the
fix-vitest-globals
branch
from
March 29, 2026 14:52
7c58334 to
dfc2d61
Compare
graphite-app
Bot
changed the base branch from
fix-vitest-globals
to
graphite-base/1178
March 29, 2026 15:33
graphite-app
Bot
force-pushed
the
graphite-base/1178
branch
from
March 29, 2026 15:43
dfc2d61 to
33fbc2c
Compare
graphite-app
Bot
force-pushed
the
vp-run-alias-vpr
branch
from
March 29, 2026 15:43
442164a to
959f493
Compare
graphite-app
Bot
force-pushed
the
vp-run-alias-vpr
branch
from
March 29, 2026 15:43
959f493 to
cf48911
Compare
fengmk2
force-pushed
the
vp-run-alias-vpr
branch
from
March 30, 2026 02:39
cf48911 to
4ec536e
Compare
fengmk2
marked this pull request as ready for review
March 30, 2026 02:43
fengmk2
force-pushed
the
vp-run-alias-vpr
branch
3 times, most recently
from
March 30, 2026 07:40
cb20872 to
834d8e5
Compare
Merge 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-app
Bot
force-pushed
the
vp-run-alias-vpr
branch
from
March 30, 2026 08:20
834d8e5 to
acee8b6
Compare
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 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.

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.