{ "branches": [ "master" ], "plugins": [ "@semantic-release/commit-analyzer", [ "@semantic-release/release-notes-generator", { "preset": "conventionalcommits", "presetConfig": { "types": [ { "type": "feat", "section": "✨ Features" }, { "type": "fix", "section": "🐛 Bug Fixes" }, { "type": "docs", "section": "📚 Documentation" }, { "type": "style", "section": "💄 Style Improvements" }, { "type": "ref", "section": "♻️ Code Refactoring" }, { "type": "perf", "section": "⚡ Performance Improvements" }, { "type": "test", "section": "✅ Tests" }, { "type": "build", "section": "📦 Build System" }, { "type": "ci", "section": "👷 CI/CD" }, { "type": "chore", "section": "🔧 Miscellaneous Changes" }, { "type": "imp", "section": "🚀 Improvements" } ] }, "parserOpts": { "noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES"] } } ], "@semantic-release/changelog", "@semantic-release/npm", [ "@semantic-release/git", { "assets": [ "CHANGELOG.md", "package.json", "package-lock.json" ], "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" } ] ], "preset": "conventionalcommits", "releaseRules": [ { "type": "ref", "release": "patch" }, { "type": "imp", "release": "patch" }, { "type": "chore", "release": "patch" } ] }