Skip to content

Commit

Permalink
Add git tags when publish.
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiofasilva committed Dec 12, 2023
1 parent d8ee87c commit ea0c6dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"type": "commonjs",
"scripts": {
"test": "npx standard && node --test",
"push": "npm version patch && git push && npm publish",
"push-minor": "npm version minor && git push && npm publish",
"push-major": "npm version major && git push && npm publish"
"push": "npm version patch && git push --tags && npm publish",
"push-minor": "npm version minor && git push --tags && npm publish",
"push-major": "npm version major && git push --tags && npm publish"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit ea0c6dd

Please sign in to comment.