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",