Skip to content

Commit

Permalink
package script for updating git tag
Browse files Browse the repository at this point in the history
  • Loading branch information
softprops committed Mar 11, 2024
1 parent 3198ee1 commit 1ce812a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -8,7 +8,8 @@
"build": "ncc build src/main.ts --minify",
"test": "jest",
"fmt": "prettier --write \"src/**/*.ts\" \"__tests__/**/*.ts\"",
"fmtcheck": "prettier --check \"src/**/*.ts\" \"__tests__/**/*.ts\""
"fmtcheck": "prettier --check \"src/**/*.ts\" \"__tests__/**/*.ts\"",
"updatetag": "git tag -d v2 && git push origin :v2 && git tag -a v2 -m '' && git push origin v2"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 1ce812a

Please sign in to comment.