Releasing
What this page is for
Prepare and publish backend changes using the current release workflow.
Steps
- Ensure tests and lint pass.
cd backend
pnpm test
pnpm lint
pnpm typecheck
- Create/update changesets if versioned release is needed.
pnpm changeset
- Version packages.
pnpm version
- Publish artifacts.
pnpm release
Verify
backend/CHANGELOG.mdreflects the release.- Release commit/tag is present in git history.
Troubleshooting
- Missing changeset warnings: add a changeset before versioning.
- Publish/auth failures: verify package registry credentials and CI secrets.