Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.12 KB

File metadata and controls

39 lines (31 loc) · 1.12 KB

Release Checklist

Update Icons

This project bundles some icons from FontAwesome, corresponding to the types of community resources. Whenever the list of resource types changes:

# Edit `./scripts/icons.ts` if needed
bun run icons

Update version, tag, and publish

# Make sure your main branch is up to date and all tests pass
git checkout main
git pull origin
bun install
bun run all

# Update translations
bun run txpull
git add i18n/ && git commit -m 'bun run txpull'

# Pick a version, see https://semver.org/ - for example: 'A.B.C' or 'A.B.C-pre.D'
# Update version number in `package.json`
# Update CHANGELOG.md

export VERSION=vA.B.C-pre.D
git add . && git commit -m "$VERSION"
git tag "$VERSION"
git push origin main "$VERSION"
bun publish

Set as latest release on GitHub: