-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.release-it.json
More file actions
39 lines (39 loc) · 1.25 KB
/
Copy path.release-it.json
File metadata and controls
39 lines (39 loc) · 1.25 KB
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
39
{
"$schema": "https://unpkg.com/release-it/schema/release-it.json",
"git": {
"commitMessage": "chore: release v${version}",
"tagName": "v${version}",
"requireCleanWorkingDir": true,
"requireUpstream": true,
"push": true
},
"github": {
"release": true,
"releaseName": "v${version}"
},
"npm": {
"publish": true,
"publishArgs": ["--access", "public"]
},
"hooks": {
"before:init": ["yarn lint", "yarn typecheck"],
"before:release": "yarn codegen"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{ "type": "feat", "section": "✨ Features" },
{ "type": "fix", "section": "🐛 Bug Fixes" },
{ "type": "perf", "section": "💨 Performance Improvements" },
{ "type": "refactor", "section": "🔄 Code Refactors" },
{ "type": "docs", "section": "📚 Documentation" },
{ "type": "chore", "section": "🛠️ Other changes" }
]
},
"infile": "CHANGELOG.md",
"header": "# Changelog\n\nAll notable changes to this project will be documented in this file. See [Conventional Commits](https://www.conventionalcommits.org/) for commit guidelines."
}
}
}