Create a new package release with version bump, GitHub release, and npm publish trigger
Create a new package release for @cronocode/react-box.
Pre-flight checks
npm run compile to verify type check passesnpm test to verify all tests passmain branch and it is clean and up to date with originVersion bump
npm version $ARGUMENTS (defaults to patch if no argument provided)Push
git push origin main --follow-tagsGather changelog context
gh release list --limit 1git log <previous-tag>..HEAD --onelinegh pr list --state merged --search "merged:>YYYY-MM-DD"Create GitHub release using the format below
3.2.0), no "v" prefixv<version> (e.g. v3.2.0)Confirm the release was created and share the URL
## Highlights
One or two sentence summary of the most notable changes in this release.
### 🚀 Features
- **ComponentOrPropName**: Description of what was added ([#PR](url))
```tsx
// Optional: short code example if it helps illustrate usage
Full Changelog: https://github.com/cronocodesolutions/react-box/compare/<previous-tag>...<new-tag>
## Format Rules
- Only include sections that have entries (skip empty sections)
- **Bold the component or prop name** at the start of each bullet
- Link every item to its PR
- Include short code examples for new features when they help illustrate usage
- Keep descriptions concise — one line per item
- The "Highlights" section is always present
- End with a Full Changelog compare link