We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca015bb commit de296bbCopy full SHA for de296bb
2 files changed
README.md
@@ -110,12 +110,11 @@ source ~/.zshrc
110
Example release:
111
112
```bash
113
-# bump version
114
-npm version patch
+# bump patch version and push commit + tag
+bun run release:patch
115
116
-# push commit + tag created by npm version
117
-git push origin main
118
-git push --tags
+# equivalent to:
+# npm version patch && git push --follow-tags
119
```
120
121
## Auto-update
package.json
@@ -6,6 +6,7 @@
6
"scripts": {
7
"build": "bun build --compile --outfile loop src/loop.ts",
8
"install:global": "bun run build && bun run src/install.ts",
9
+ "release:patch": "npm version patch && git push --follow-tags",
10
"check": "ultracite check",
11
"fix": "ultracite fix"
12
},
0 commit comments