From ade520d73c19ac9044c2c6e65876fe132b347a8e Mon Sep 17 00:00:00 2001 From: Oluwatobi Sofela <60105594+oluwatobiss@users.noreply.github.com> Date: Thu, 11 Jan 2024 18:46:35 +0100 Subject: [PATCH] chore(release-it): overwrite changelog's default configuration --- .release-it.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.release-it.json b/.release-it.json index 4b084d6..10029e7 100644 --- a/.release-it.json +++ b/.release-it.json @@ -1,8 +1,21 @@ { "plugins": { "@release-it/conventional-changelog": { + "header": "# Changelog", "infile": "CHANGELOG.md", - "preset": "conventionalcommits" + "preset": { + "name": "conventionalcommits", + "types": [ + { "type": "build", "section": "๐Ÿงฑ Dependency" }, + { "type": "chore", "section": "๐Ÿ  Chores" }, + { "type": "docs", "section": "๐Ÿ“ Documentation" }, + { "type": "feat", "section": "๐Ÿš€ New Feature" }, + { "type": "fix", "section": "๐Ÿ› Bug Fix" }, + { "type": "refactor", "section": "๐Ÿ”„๏ธ Code Refactoring" }, + { "type": "style", "section": "๐Ÿ’… Styling and Formatting" }, + { "type": "test", "section": "๐Ÿงช Code Testing" } + ] + } } }, "git": {