From 477508479f835a1504f687e518a6b25d50a8ae0a Mon Sep 17 00:00:00 2001 From: Jan W Date: Tue, 5 Nov 2024 19:31:01 +0100 Subject: [PATCH] chore: add license commit type --- lerna.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/lerna.json b/lerna.json index 028929ea..9ac00f20 100644 --- a/lerna.json +++ b/lerna.json @@ -2,5 +2,18 @@ "packages": ["modules/*", "libraries/*", "features/*"], "version": "independent", "npmClient": "yarn", - "changelogPreset": "conventionalcommits" + "changelogPreset": { + "name": "conventionalcommits", + "types": [ + { "type": "feat", "section": "Features" }, + { "type": "fix", "section": "Bug Fixes" }, + { "type": "perf", "section": "Performance" }, + { "type": "license", "section": "License" }, + { "type": "chore", "hidden": true }, + { "type": "docs", "hidden": true }, + { "type": "style", "hidden": true }, + { "type": "refactor", "hidden": true }, + { "type": "test", "hidden": true } + ] + } }