-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path.release-it.json
More file actions
41 lines (41 loc) · 1.08 KB
/
.release-it.json
File metadata and controls
41 lines (41 loc) · 1.08 KB
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
32
33
34
35
36
37
38
39
40
41
{
"git": {
"commitMessage": "chore(release): ${version} [skip ci]\n\n${changelog}",
"tagName": "v${version}",
"requireCleanWorkingDir": false,
"requireBranch": false,
"commit": true,
"tag": true,
"push": true
},
"github": {
"release": true,
"releaseName": "v${version}",
"autoGenerate": false
},
"npm": {
"publish": true,
"skipChecks": true
},
"hooks": {
"before:init": [
"npm run test"
],
"after:bump": [
"node scripts/sync-workspace-versions.js",
"npm run build"
],
"after:npm:release": [
"node scripts/publish-workspace.js"
],
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits",
"infile": "CHANGELOG.md",
"header": "# Changelog\n\nAll notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.",
"ignoreRecommendedBump": false
}
}
}