We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca9296c commit fac7f25Copy full SHA for fac7f25
1 file changed
.release-it.json
@@ -2,12 +2,18 @@
2
"pkgFiles": [
3
"package.json"
4
],
5
+ "src": {
6
+ "tagName": "v%s",
7
+ "tagAnnotation": "Release v%s",
8
+ "commitMessage": "Release v%s"
9
+ },
10
"github": {
- "release": true
11
+ "release": true,
12
+ "releaseName": "Release v%s"
13
},
- "buildCommand": "npm run build",
14
+ "buildCommand": "npm run build && npx conventional-changelog -p angular -i CHANGELOG.md -s",
15
"increment": "conventional:angular",
- "beforeChangelogCommand": "conventional-changelog -p angular -i CHANGELOG.md -s",
- "changelogCommand": "conventional-changelog -p angular | tail -n +3",
16
+ "beforeChangelogCommand": "npx conventional-changelog -p angular -i CHANGELOG.md -s",
17
+ "changelogCommand": "npx conventional-changelog -p angular -u | tail -n +3",
18
"safeBump": false
19
}
0 commit comments