{ "hooks": { "after:bump": "node scripts/bump-plugin-versions.mjs ${version}" }, "git": { "commitMessage": "chore: release v${version}", "tagName": "v${version}", "tagAnnotation": "Release v${version}", "requireCleanWorkingDir": true, "push": true }, "github": { "release": true, "releaseName": "v${version}" }, "npm": { "publish": true }, "plugins": { "@release-it/conventional-changelog": { "preset": { "name": "conventionalcommits", "types": [ { "type": "feat", "section": "Features" }, { "type": "fix", "section": "Bug Fixes" }, { "type": "perf", "section": "Performance" }, { "type": "refactor", "section": "Refactors" }, { "type": "docs", "section": "Documentation" }, { "type": "test", "section": "Tests" }, { "type": "chore", "hidden": true }, { "type": "ci", "hidden": true }, { "type": "build", "hidden": true } ] }, "infile": "CHANGELOG.md", "header": "# Changelog\n\nAll notable changes to SocratiCode are documented here.\nThis project uses [Conventional Commits](https://www.conventionalcommits.org/) and [Semantic Versioning](https://semver.org/).\n" } } }