Skip to content

Commit

Permalink
ci: set prelease tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Domino987 committed Jun 9, 2021
1 parent 48e56b0 commit bb0d2f2
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 @@ -26,9 +26,9 @@
"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-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'",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major --preid=next -m 'Release v%s'",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor --preid=next -m 'Release v%s'",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch --preid=next -m 'Release v%s'",
"postrelease:major": "git push",
"postrelease:minor": "git push",
"postrelease:patch": "git push",
Expand Down

0 comments on commit bb0d2f2

Please sign in to comment.