| name | release |
| description | Use when user asks to release, publish, bump version, or prepare a new version for deployment |
Release
Validate, format, bump version, and tag for release.
Workflow
- Validate - Run project's validation command
- Fix formatting - Auto-fix prettier/formatting issues if any
- Bump version - Ask user for bump type, update package.json
- Commit & tag - Commit version bump, create git tag
- Optionally push - Ask if user wants to push
Commands
yarn validate
yarn prettier:fix
git add package.json
git commit -m "chore: bump version to X.Y.Z"
git tag vX.Y.Z
git push && git push --tags
Quick Reference
| Bump Type | When to Use |
|---|
| patch | Bug fixes, small changes |
| minor | New features, backwards compatible |
| major | Breaking changes |
Before Release Checklist