Skip to content

Commit

Permalink
Update release scripts in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Lillifee committed Jan 20, 2024
1 parent 843e5f2 commit a931268
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
"build": "npm run build:site && npm run build:server",
"build:server": "node --loader ts-node/esm ./build.server.mts",
"build:site": "node --loader ts-node/esm ./build.site.mts",
"release": "yarn version --patch && git push --follow-tags"
"release": "yarn release:patch",
"release:patch": "yarn version --patch && git push --follow-tags",
"release:minor": "yarn version --minor && git push --follow-tags",
"release:major": "yarn version --major && git push --follow-tags"
},
"dependencies": {
"buffer": "^6.0.3",
Expand Down

0 comments on commit a931268

Please sign in to comment.