-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.release-it.json
30 lines (30 loc) · 935 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
{
"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}"
},
"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"
}
}
}
}