-
Notifications
You must be signed in to change notification settings - Fork 3
/
.release-it.json
31 lines (31 loc) · 964 Bytes
/
.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
{
"hooks": {
"before:release": [
"npx auto-changelog --latest-version ${version} --ignore-commit-pattern \"^🔖 Release\" --commit-limit false --hide-credit --template https://raw.githubusercontent.com/release-it/release-it/master/templates/keepachangelog.hbs",
"git add CHANGELOG.md"
]
},
"git": {
"commitMessage": "🔖 Release ${version}",
"tagName": "${version}"
},
"github": {
"release": true,
"releaseNotes": "npx auto-changelog --latest-version ${version} --stdout --ignore-commit-pattern \"^🔖 Release\" --commit-limit false --hide-credit --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/bumper": {
"in": {
"file": "VERSION.md",
"type": "text/plain"
},
"out": {
"file": "VERSION.md",
"type": "text/plain"
}
}
}
}