{ "hooks": { "before:init": ["yarn install --immutable", "yarn i18n"] }, "git": { "commitMessage": "chore: Release ${version}", "tagName": "${version}", "tagAnnotation": "Release ${version}" }, "github": { "release": true, "releaseName": "${version}" }, "npm": { "publish": true }, "plugins": { "@release-it/conventional-changelog": { "infile": "CHANGELOG.md", "header": "# Changelog", "preset": { "name": "conventionalcommits", "types": [ { "type": "feat", "section": "Features" }, { "type": "fix", "section": "Bug Fixes" }, { "type": "refactor", "section": "Changes" }, { "type": "chore", "section": "Maintenance" }, { "type": "ci", "section": "Maintenance" }, { "type": "perf", "section": "Maintenance" }, { "type": "build", "section": "Maintenance" }, { "type": "style", "section": "Maintenance" }, { "type": "revert", "section": "Bug Fixes" }, { "type": "test", "section": "Maintenance" }, { "type": "docs", "section": "Documentation" } ] } } } }