Skip to content

Commit

Permalink
Add release commands
Browse files Browse the repository at this point in the history
  • Loading branch information
urnotsam committed Dec 23, 2024
1 parent 81fa597 commit 27db9f1
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 @@ -40,7 +40,10 @@
"test-watch": "jest --watch",
"depcheck": "depcheck --skip-missing --ignores webpack,webpack-cli,prettier,typescript-eslint,typescript-estree,@mapbox/node-pre-gyp,@types/estree",
"format-check": "prettier --check './src/**/*.ts'",
"format-fix": "prettier --write './src/**/*.ts'"
"format-fix": "prettier --write './src/**/*.ts'",
"release:patch": "npm run prepare && npm version patch && git push --follow-tags && npm publish",
"release:minor": "npm run prepare && npm version minor && git push --follow-tags && npm publish",
"release:major": "npm run prepare && npm version major && git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 27db9f1

Please sign in to comment.