{ "$schema": "https://unpkg.com/release-it/schema/release-it.json", "npm": { "publish": false }, "gitlab": { "release": true }, "plugins": { "@release-it/conventional-changelog": { "infile": "CHANGELOG.md", "writerOpts": { "groupBy": "type" }, "preset": { "name": "conventionalcommits", "types": [ { "type": "feat", "section": "Features" }, { "type": "fix", "section": "Bug Fixes" }, { "type": "style", "section": "Styles" }, { "type": "perf", "section": "Performance Improvements" }, { "type": "refactor", "section": "Refactoring" }, { "type": "chore", "section": "Chores" } ] } } }, "hooks": { "after:bump": "npm run asset-sizes" } }