-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.release-it.json
38 lines (38 loc) · 1.2 KB
/
.release-it.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"hooks": {
"before:init": "pnpm build"
},
"git": {
"requireBranch": "main",
"commitMessage": "chore(release): ${version}",
"tagName": "v${version}",
"requireCleanWorkingDir": true,
"push": false
},
"github": {
"release": true,
"tokenRef": "GITHUB_TOKEN"
},
"npm": {
"publish": true,
"tokenRef": "NPM_TOKEN"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{ "type": "feat", "section": "✨ Features", "hidden": false },
{ "type": "fix", "section": "🐛 Fixes", "hidden": false },
{ "type": "chore", "section": "📦 Chores", "hidden": true },
{ "type": "docs", "section": "📝 Documentation", "hidden": false },
{ "type": "style", "section": "💅 Styling", "hidden": false },
{ "type": "refactor", "section": "🔨 Refactors", "hidden": false },
{ "type": "perf", "section": "⚡ Performance Improvements", "hidden": false },
{ "type": "test", "section": "✅ Tests", "hidden": false },
{ "type": "ci", "section": "🔧 Continuous Integration", "hidden": false }
]
}
}
}
}