(chore) improve: version bumping process

This commit is contained in:
Prad Nukala 2025-01-07 15:23:46 -05:00
parent 025adbddaa
commit ea3dc2b9fe
2 changed files with 7 additions and 3 deletions

View File

@ -34,9 +34,10 @@ tasks:
esclient:bump: esclient:bump:
dir: ./libs/es-client dir: ./libs/es-client
internal: true
cmds: cmds:
- pnpm version patch - devbox run bump
- git add package.json - git add .
- git commit -m "chore: bump version to {{.VERSION}} [skip ci]" - git commit -m "(chore) bump version"
- git push - git push
silent: true silent: true

View File

@ -14,6 +14,9 @@
], ],
"publish": [ "publish": [
"pnpm publish" "pnpm publish"
],
"bump": [
"pnpm version patch"
] ]
} }
} }