From 7f8e9c49289a930494d229f9b3c785c70a57bc49 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Mon, 14 Dec 2020 14:56:18 +0100 Subject: [PATCH] =?UTF-8?q?build:=20=F0=9F=93=A6=EF=B8=8F=20semantic=20rel?= =?UTF-8?q?ease=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- release.config.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/release.config.js b/release.config.js index 345c0757..ae6338a2 100644 --- a/release.config.js +++ b/release.config.js @@ -12,12 +12,18 @@ module.exports = { parserOpts: { noteKeywords: ["BREAKING CHANGE", "BREAKING CHANGES"], }, + }, + ], + [ + "@semantic-release/release-notes-generator", + { + preset: "conventionalcommits", presetConfig: { types: [ { type: "feat", section: "Features" }, { type: "fix", section: "Bug Fixes" }, { type: "chore", section: "Other" }, - { type: "docs", section: "Other" }, + { type: "docs", section: "Documentation" }, { type: "style", section: "Other" }, { type: "refactor", section: "Other" }, { type: "perf", section: "Other" }, @@ -28,7 +34,6 @@ module.exports = { }, }, ], - "@semantic-release/release-notes-generator", "@semantic-release/changelog", "@semantic-release/github", "@semantic-release/npm",