-
-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy path.release-it.json
More file actions
28 lines (28 loc) · 613 Bytes
/
Copy path.release-it.json
File metadata and controls
28 lines (28 loc) · 613 Bytes
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
{
"$schema": "https://raw.githubusercontent.com/release-it/release-it/refs/heads/main/schema/release-it.json",
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits"
},
"infile": "CHANGELOG.md",
"bumpStrict": true
},
"@release-it/bumper": {
"out": {
"file": "(server|web|shared|types)/package.json",
"path": "version"
}
}
},
"git": {
"commitMessage": "chore: release ${version}"
},
"npm": {
"skipChecks": true,
"publish": false
},
"github": {
"release": true
}
}