You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,11 +19,34 @@ Vite+ is the unified entry point for local web development. It combines [Vite](h
19
19
-**`vp build`:** Build applications for production with Vite + Rolldown
20
20
-**`vp run`:** Execute monorepo tasks with caching and dependency-aware scheduling
21
21
-**`vp pack`:** Build libraries for npm publishing or standalone app binaries
22
+
-**`vp release`:** Version and publish workspace packages with dry-run support, readiness warnings, a required final confirmation by default, optional changelog generation via `--changelog`, prerelease channels like `--preid alpha` / `beta` / `rc`, and `--projects` order respected between independent packages
22
23
-**`vp create` / `vp migrate`:** Scaffold new projects and migrate existing ones
23
24
24
25
All of this is configured from your project root and works across Vite's framework ecosystem.
25
26
Vite+ is fully open-source under the MIT license.
26
27
28
+
### Release References
29
+
30
+
`vp release` follows these upstream specifications and package-manager docs when deciding version bumps and publish safety:
`vp release` does not run build, pack, or custom pre-release scripts implicitly. Instead it summarizes likely checks from `build`, `pack`, `prepack`, `prepublishOnly`, `prepare`, and `vitePlus.release.checkScripts`, then asks for confirmation before mutating files or publishing. Use `--yes` for CI or other non-interactive runs.
49
+
27
50
## Getting Started
28
51
29
52
Install Vite+ globally as `vp`:
@@ -120,6 +143,7 @@ Use `vp migrate` to migrate to Vite+. It merges tool-specific config files such
120
143
121
144
-**build** - Build for production
122
145
-**pack** - Build libraries
146
+
-**release** - Version and publish workspace packages, with optional changelog generation
0 commit comments