From e692dd531c611edd08a2a5cbcdcd5737d5fcec96 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 5 Aug 2024 17:02:55 +0300 Subject: [PATCH] refactor(user-config): add comment example (#104) Co-authored-by: Almanov Nikita <131481562+nikkeyl@users.noreply.github.com> --- src/types/user-config.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types/user-config.d.ts b/src/types/user-config.d.ts index 214539d..7e6dc5f 100644 --- a/src/types/user-config.d.ts +++ b/src/types/user-config.d.ts @@ -5,6 +5,8 @@ interface UserConfig extends Options { * All plugins will receive the `preset` option, * which will be used by both @semantic-release/commit-analyzer * and @semantic-release/release-notes-generator. + * + * Example: 'conventionalcommits'. */ preset?: string; }