From cfd58e9684ec07ef9c4fd8e03e9bfe330b7bc969 Mon Sep 17 00:00:00 2001 From: Connor Shea Date: Sat, 4 Apr 2026 19:54:59 -0600 Subject: [PATCH] docs: Improve docs for core commands. I noticed `vp cache` was described incorrectly, `vp cache clean` is what was described there. Also updated a few miscellaneous other things on the page. --- docs/guide/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guide/index.md b/docs/guide/index.md index 6a066f216b..7cfd8391df 100644 --- a/docs/guide/index.md +++ b/docs/guide/index.md @@ -94,10 +94,10 @@ Vite+ can handle the entire local frontend development cycle from starting a pro ### Execute - [`vp run`](/guide/run) runs tasks across workspaces with caching. -- [`vp cache`](/guide/cache) clears task cache entries. -- [`vpx`](/guide/vpx) runs binaries globally. +- [`vp cache clean`](/guide/cache) clears task cache entries. +- [`vpx`](/guide/vpx) downloads and runs binaries globally. - [`vp exec`](/guide/vpx) runs local project binaries. -- [`vp dlx`](/guide/vpx) runs package binaries without adding them as dependencies. +- [`vp dlx`](/guide/vpx) downloads and runs package binaries without adding them as dependencies. ### Build @@ -116,7 +116,7 @@ Vite+ can handle the entire local frontend development cycle from starting a pro - [`vp implode`](/guide/implode) removes `vp` and related Vite+ data from your machine. ::: info -Vite+ ships with many predefined commands such as `vp build`, `vp test`, and `vp dev`. These commands are built in and cannot be changed. If you want to run a command from your `package.json` scripts, use `vp run `. +Vite+ ships with many predefined commands such as `vp build`, `vp test`, and `vp dev`. These commands are built-in and cannot be changed. If you want to run a command from your `package.json` scripts, use `vp run ` or `vpr `. [Learn more about `vp run`.](/guide/run) :::