-
Notifications
You must be signed in to change notification settings - Fork 65
/
.release-it.json
24 lines (24 loc) · 974 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
{
"hooks": {
"before:init": ["npm run lint", "npm test"],
"after:bump": "auto-changelog --starting-date 2021-12-01 --commit-limit false --ignore-commit-pattern '((dev|chore|ci):|skip changelog|Release)'",
"after:npm:bump": "npm pack",
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
},
"git": {
"commitMessage": "Release ${version}",
"commitArgs": ["-S"],
"tagAnnotation": "Release ${version}",
"tagArgs": ["-s"],
"changelog": "auto-changelog -u --starting-date 2021-12-01 --commit-limit false --ignore-commit-pattern '((dev|chore|ci):|skip changelog|Release)' --stdout -t https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
},
"npm": {
"publish": false
},
"github": {
"release": true,
"releaseName": "@metalsmith/markdown ${version}",
"tokenRef": "GITHUB_TOKEN",
"assets": ["metalsmith-markdown-${version}.tgz"]
}
}