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: GEMINI.md
+46Lines changed: 46 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,34 @@ DevTools is a local-first, open-source API testing platform (Postman alternative
55
55
-**Fix:**`task fix` (runs Prettier and Syncpack).
56
56
-**Go Benchmarks:** Use `task benchmark:run` to run, `task benchmark:baseline` to save baseline, and `task benchmark:compare` to compare.
57
57
58
+
### Nx Version Plans
59
+
Version plans are file-based versioning for independent releases. They allow contributors to declare version bumps alongside their changes without modifying `package.json` directly.
60
+
61
+
**How it works:**
62
+
1. When making a change that warrants a release, create a version plan file
63
+
2. The file is stored in `.nx/version-plans/` as a markdown file
64
+
3. During release, Nx reads all pending version plans and applies the bumps
65
+
66
+
**Creating a version plan:**
67
+
```bash
68
+
task version-plan project=desktop # Interactive prompt for bump type + message
0 commit comments