Skip to content

Commit 861da77

Browse files
committed
Update release checklist to use bun
1 parent 06da785 commit 861da77

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

RELEASE.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
11
## Release Checklist
22

3-
### Update changelog, version, tag, and publish
3+
#### Update version, tag, and publish
44

55
```bash
66
# Make sure your main branch is up to date and all tests pass
77
git checkout main
88
git pull origin
9-
npm install
10-
npm run all
9+
bun install
10+
bun run all
1111

1212
# Pick a version, see https://semver.org/ - for example: 'A.B.C' or 'A.B.C-pre.D'
1313
# Update version number in `package.json`
1414
# Update CHANGELOG.md and docs as needed
15+
1516
export VERSION=vA.B.C-pre.D
1617
git add . && git commit -m "$VERSION"
1718
git tag "$VERSION"
1819
git push origin main "$VERSION"
19-
npm publish
20+
bun publish
2021
```
2122

2223
Set as latest release on GitHub:

0 commit comments

Comments
 (0)