From 638c63f9c7e6bcbbb36a025a45d748c1ce44c9c0 Mon Sep 17 00:00:00 2001 From: Mike Hardy Date: Sun, 12 Dec 2021 10:16:22 -0500 Subject: [PATCH] chore(release): switch to conventionalcommits standard for release automation angular standard is the default, but it does not allow `!` and does not recognize 'BREAKING CHANGES' (with the 'S'), too strict and not current with evolved standard --- .releaserc | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.releaserc b/.releaserc index a6b44885..77880683 100644 --- a/.releaserc +++ b/.releaserc @@ -4,8 +4,12 @@ "next" ], "plugins": [ - "@semantic-release/commit-analyzer", - "@semantic-release/release-notes-generator", + ["@semantic-release/commit-analyzer", { + "preset": "conventionalcommits" + }], + ["@semantic-release/release-notes-generator", { + "preset": "conventionalcommits" + }], "@semantic-release/changelog", "@semantic-release/npm", [ @@ -20,4 +24,4 @@ ], "@semantic-release/github" ] -} \ No newline at end of file +}