fix(release) use npm version for tag bump

This commit is contained in:
2026-06-15 17:32:45 +01:00
parent 40811ed6e8
commit 6706a2ce68

View File

@@ -2,8 +2,8 @@
"name": "bugswatch-agent", "name": "bugswatch-agent",
"version": "0.1.0", "version": "0.1.0",
"scripts": { "scripts": {
"release": "bun version patch && git push && git push --tags", "release": "npm version patch && git push && git push --tags",
"release:minor": "bun version minor && git push && git push --tags", "release:minor": "npm version minor && git push && git push --tags",
"release:major": "bun version major && git push && git push --tags" "release:major": "npm version major && git push && git push --tags"
} }
} }