Skip to content

Commit

Permalink
chore: don't create tag on release command
Browse files Browse the repository at this point in the history
  • Loading branch information
ilfa committed Apr 11, 2022
1 parent 0269fad commit 797ac6b
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 @@ -23,9 +23,9 @@
"lint:fix": "yarn lint --fix",
"test": "jest",
"test:dts": "tsc --noEmit --isolatedModules dist/fp-pro-spa.d.ts",
"release:major": "changelog -M && git add CHANGELOG.md && yarn version --major",
"release:minor": "changelog -m && git add CHANGELOG.md && yarn version --minor",
"release:patch": "changelog -p && git add CHANGELOG.md && yarn version --patch"
"release:major": "changelog -M && git add CHANGELOG.md && yarn version --major --no-git-tag-version",
"release:minor": "changelog -m && git add CHANGELOG.md && yarn version --minor --no-git-tag-version",
"release:patch": "changelog -p && git add CHANGELOG.md && yarn version --patch --no-git-tag-version"
},
"files": [
"dist"
Expand Down

0 comments on commit 797ac6b

Please sign in to comment.