Skip to content

Commit

Permalink
ci: add next tag to version
Browse files Browse the repository at this point in the history
  • Loading branch information
Domino987 committed Jun 5, 2021
1 parent 3d8f9a9 commit 10b0fbf
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@
"lint:fix": "./node_modules/.bin/eslint src/** -c ./.eslintrc --ignore-path ./.eslintignore --fix",
"prettify": "./node_modules/.bin/prettier -c ./.prettierrc --write **/*.js",
"test": "jest",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major -m 'Release v%s'",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor -m 'Release v%s'",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch -m 'Release v%s'",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major -m 'Release v%s-next'",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor -m 'Release v%s-next'",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch -m 'Release v%s-next'",
"postrelease:major": "git push",
"postrelease:minor": "git push",
"postrelease:patch": "git push",
"git:push:tags": "git push origin && git push origin --tags"
},
"husky": {
Expand Down

0 comments on commit 10b0fbf

Please sign in to comment.