We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e01fd0 commit 4201d71Copy full SHA for 4201d71
package.json
@@ -32,7 +32,9 @@
32
"type-check": "tsc --noEmit",
33
"test": "vitest",
34
"update-deps": "npx npm-check-updates -u && npm install",
35
- "bump": "npx bump && git add . && git commit -m 'bump version' && git push && git push --tags"
+ "bump": "npm version patch && git push origin main --follow-tags",
36
+ "bump:minor": "npm version minor && git push origin main --follow-tags",
37
+ "bump:major": "npm version major && git push origin main --follow-tags"
38
},
39
"dependencies": {
40
"@servicestack/client": "^2.1.13"
0 commit comments