Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,3 +227,17 @@ pnpm dev:zero-cache
cd demo
pnpm dev:ui
```

## Releasing

Releases are published to npm automatically via CI when a version tag is pushed. To cut a new patch release:

```sh
git checkout main
git reset --hard origin/main
pnpm version patch
git push
git push --tags
```

Use `pnpm version minor` or `pnpm version major` for larger releases.
Loading