feat: add vpr as standalone shorthand for vp run#1178
Merged
graphite-app[bot] merged 1 commit intomainfrom Mar 30, 2026
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. |
c6e7de2 to
8616f4e
Compare
This was referenced Mar 28, 2026
8616f4e to
ba3a258
Compare
fd1b75e to
7c58334
Compare
ba3a258 to
442164a
Compare
7c58334 to
dfc2d61
Compare
dfc2d61 to
33fbc2c
Compare
442164a to
959f493
Compare
959f493 to
cf48911
Compare
cf48911 to
4ec536e
Compare
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
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.