chore: fixes to release workflow and release shortcuts

This commit is contained in:
2025-09-30 23:18:56 +03:00
parent 91727e3863
commit fca04856a8
2 changed files with 45 additions and 4 deletions

View File

@@ -32,7 +32,10 @@
"lint": "biome check src/",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepare": "husky"
"prepare": "husky",
"release:patch": "npm version patch -m 'chore: release v%s' && git push origin main --follow-tags",
"release:minor": "npm version minor -m 'chore: release v%s' && git push origin main --follow-tags",
"release:major": "npm version major -m 'chore: release v%s' && git push origin main --follow-tags"
},
"dependencies": {
"@types/yargs": "^17.0.33",