We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06da785 commit 861da77Copy full SHA for 861da77
RELEASE.md
@@ -1,22 +1,23 @@
1
## Release Checklist
2
3
-### Update changelog, version, tag, and publish
+#### Update version, tag, and publish
4
5
```bash
6
# Make sure your main branch is up to date and all tests pass
7
git checkout main
8
git pull origin
9
-npm install
10
-npm run all
+bun install
+bun run all
11
12
# Pick a version, see https://semver.org/ - for example: 'A.B.C' or 'A.B.C-pre.D'
13
# Update version number in `package.json`
14
# Update CHANGELOG.md and docs as needed
15
+
16
export VERSION=vA.B.C-pre.D
17
git add . && git commit -m "$VERSION"
18
git tag "$VERSION"
19
git push origin main "$VERSION"
-npm publish
20
+bun publish
21
```
22
23
Set as latest release on GitHub:
0 commit comments