Skip to content

Commit

Permalink
feat(release): added plugin to write changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
RSickenberg committed Jul 17, 2024
1 parent c5f06fe commit 6a9577a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
Binary file modified bun.lockb
Binary file not shown.
18 changes: 18 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"zustand": "^4.5.4"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"@release-it/keep-a-changelog": "^5.0.0",
"dotenv-cli": "^7.4.2",
"release-it": "^17.6.0",
Expand All @@ -55,6 +56,23 @@
"requiredBranch": "main"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "chore", "section": "Chore"},
{"type": "docs", "section": "Docs"},
{"type": "style", "section": "Misc"},
{"type": "refactor", "section": "Refactoring"},
{"type": "perf", "section": "Optimisations"},
{"type": "test", "seciton": "Tests"}
]
},
"infile": "CHANGELOG.md",
"ignoreRecommendedBump": true
},
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md",
"strictLatest": true,
Expand Down

0 comments on commit 6a9577a

Please sign in to comment.