| name | releases-changesets |
|---|---|
| description | Uses changesets for versioning and changelog; avoids manual version bumps; aligns with build/zip and workflow_dispatch. Use when cutting a release, adding a changeset, preparing for publish, or when touching version or changelog. |
All user-facing or notable changes get a changeset in .changeset/. Do not edit package.json version manually for releases.
- Run
pnpm changeset, or add a new.mdfile in.changeset/with the standard format: semver type (major/minor/patch) and a short summary for the changelog.
.changeset/config.json: changelog: "@changesets/cli/changelog", commit: false, baseBranch: "main".
- Build both targets:
pnpm build:all - Create zips:
pnpm zip:all - workflow_dispatch (e.g. issue #27) is the intended automation when available; document in README when in place.