From 0f83d800c94b0569ea194c0acc1f7e1062f381ee Mon Sep 17 00:00:00 2001 From: "Dylan R. E. Moonfire" Date: Tue, 7 Dec 2021 09:05:39 -0600 Subject: [PATCH] build(semantic-release): updating conventions --- .gitignore | 1 + release.config.js | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 50364fe..d128f9b 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ obj/ .idea/ _ReSharper.Caches/ node_modules/ +.direnv/ diff --git a/release.config.js b/release.config.js index 08dda12..0633f9a 100644 --- a/release.config.js +++ b/release.config.js @@ -2,7 +2,12 @@ module.exports = { branches: ["main"], message: "chore(release): v${nextRelease.version} [skip ci]\n\n${nextRelease.notes}", plugins: [ - "@semantic-release/commit-analyzer", + [ + "@semantic-release/commit-analyzer", + { + "preset": "conventionalcommits", + }, + ], "@semantic-release/release-notes-generator", "@semantic-release/npm", "semantic-release-dotnet",