From 0ed9bb3a71cb3c5ff4257e6fed1cdf1f177efc9d Mon Sep 17 00:00:00 2001 From: Arshad Yaseen Date: Sat, 28 Sep 2024 17:47:13 +0530 Subject: [PATCH] ci: add release-it preset types --- .release-it.json | 82 ++++++++++++++++++++++++------------------------ 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/.release-it.json b/.release-it.json index 557a74c..bd0eff9 100644 --- a/.release-it.json +++ b/.release-it.json @@ -26,48 +26,48 @@ }, "plugins": { "@release-it/conventional-changelog": { - "preset": { - "name": "conventionalcommits" - }, "infile": "CHANGELOG.md", - "types": [ - { - "type": "feat", - "section": "๐Ÿš€ Features" - }, - { - "type": "fix", - "section": "๐Ÿ› Bug Fixes" - }, - { - "type": "docs", - "section": "๐Ÿ“š Documentation" - }, - { - "type": "style", - "section": "๐Ÿ’… Styling" - }, - { - "type": "refactor", - "section": "๐Ÿ”„ Refactoring" - }, - { - "type": "perf", - "section": "โšก๏ธ Performance" - }, - { - "type": "test", - "section": "๐Ÿงช Testing" - }, - { - "type": "build", - "section": "๐Ÿ› ๏ธ Build System" - }, - { - "type": "ci", - "section": "๐Ÿ”ง CI/CD" - } - ] + "preset": { + "name": "conventionalcommits", + "types": [ + { + "type": "feat", + "section": "๐Ÿš€ Features" + }, + { + "type": "fix", + "section": "๐Ÿ› Bug Fixes" + }, + { + "type": "docs", + "section": "๐Ÿ“š Documentation" + }, + { + "type": "style", + "section": "๐Ÿ’… Styling" + }, + { + "type": "refactor", + "section": "๐Ÿ”„ Refactoring" + }, + { + "type": "perf", + "section": "โšก๏ธ Performance" + }, + { + "type": "test", + "section": "๐Ÿงช Testing" + }, + { + "type": "build", + "section": "๐Ÿ› ๏ธ Build System" + }, + { + "type": "ci", + "section": "๐Ÿ”ง CI/CD" + } + ] + } } } }