chore: change changelog generator to conventionalcommits

This commit is contained in:
Elias Schneider
2022-10-18 09:12:11 +02:00
parent 3cea22ad13
commit a8a56321dd
2 changed files with 17 additions and 18 deletions

View File

@@ -4,7 +4,7 @@
"scripts": {
"format": "cd frontend && npm run format && cd ../backend && npm run format",
"lint": "cd frontend && npm run lint && cd ../backend && npm run lint",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"version": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s && git add CHANGELOG.md",
"release:patch": "npm version patch -m 'release: %s' && git push && git push --tags",
"release:minor": "npm version minor -m 'release: %s' && git push && git push --tags"
}