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 21a211c commit 96921e6Copy full SHA for 96921e6
package.json
@@ -36,7 +36,10 @@
36
"type-check": "vue-tsc --noEmit",
37
"test": "vitest",
38
"update-deps": "npx npm-check-updates -u && npm install",
39
- "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",
40
+ "bump:minor": "npm version minor && git push origin main --follow-tags",
41
+ "bump:major": "npm version major && git push origin main --follow-tags",
42
+ "release": "gh release create v$(node -p \"require('./package.json').version\") --title v$(node -p \"require('./package.json').version\") --generate-notes"
43
},
44
"dependencies": {
45
"@servicestack/client": "^2.1.13",
0 commit comments