From f4d25443a58b73ef799e520fd83edd7fe8a6965b Mon Sep 17 00:00:00 2001 From: Connor Shea Date: Sat, 4 Apr 2026 19:49:25 -0600 Subject: [PATCH 1/2] docs: Improve docs for vpx command. Just making it clear that it will install the package if it's not found, rather than just saying it "can" download it when needed. --- docs/guide/vpx.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/vpx.md b/docs/guide/vpx.md index 0bf80c820c..0263751654 100644 --- a/docs/guide/vpx.md +++ b/docs/guide/vpx.md @@ -8,7 +8,7 @@ Use `vpx`, `vp exec`, and `vp dlx` to run binaries without switching between loc Use the other binary commands when you need stricter control: -- `vpx` resolves a package binary locally first and can download it when needed +- `vpx` resolves a package binary locally first and will download it if not found - `vp exec` runs a binary from the current project's `node_modules/.bin` - `vp dlx` runs a package binary without adding it as a dependency @@ -22,7 +22,7 @@ vpx [args...] ### Options -- `-p, --package ` installs one or more packages before running the command +- `-p, --package ` installs one or more additional packages before running the command - `-c, --shell-mode` executes the command inside a shell - `-s, --silent` suppresses Vite+ output and only shows the command output From 5c204199d72e20d9c3c3fdc920c4c4389cce9939 Mon Sep 17 00:00:00 2001 From: Connor Shea Date: Sat, 4 Apr 2026 20:25:10 -0600 Subject: [PATCH 2/2] Update docs/guide/vpx.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Connor Shea --- docs/guide/vpx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/vpx.md b/docs/guide/vpx.md index 0263751654..6cc1ab2a5f 100644 --- a/docs/guide/vpx.md +++ b/docs/guide/vpx.md @@ -8,7 +8,7 @@ Use `vpx`, `vp exec`, and `vp dlx` to run binaries without switching between loc Use the other binary commands when you need stricter control: -- `vpx` resolves a package binary locally first and will download it if not found +- `vpx` resolves a package binary locally first by default and downloads it if not found; with `pkg@version`, `--package/-p`, or `--shell-mode`, it runs via `vp dlx` - `vp exec` runs a binary from the current project's `node_modules/.bin` - `vp dlx` runs a package binary without adding it as a dependency