-
-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy path.release-it.json
30 lines (30 loc) · 852 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
{
"git": {
"commitMessage": "chore: release v${version}",
"tagName": "v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}"
},
"npm": {
"publish": true,
"publishPath": "dist/"
},
"hooks": {
"before:init": [
"npm run lint"
],
"after:bump": "npm run build",
"after:git:release": "echo After git push, before GitHub Release",
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
},
"plugins": {
"@release-it/conventional-changelog": {
"header": "# Change Log\nAll notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.",
"preset": "angular",
"ignoreRecommendedBump": true,
"infile": "CHANGELOG.md"
}
}
}