Files
claudecodeui/.release-it.json
2025-09-23 10:35:38 +02:00

18 lines
469 B
JSON

{
"git": {
"commitMessage": "Release ${version}",
"tagName": "v${version}",
"changelog": "git log --pretty=format:\"* %s (%h)\" ${from}...${to}"
},
"npm": {
"publish": true
},
"github": {
"release": true,
"releaseName": "Claude Code UI v${version}",
"releaseNotes": "## Installation\n\n```bash\nnpx @siteboon/claude-code-ui@${version}\n```\n\n## Changes\n\n${changelog}"
},
"hooks": {
"before:init": ["npm run build"]
}
}