forked from neo9/n9-node-routing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.release-it.json
57 lines (57 loc) · 1.11 KB
/
.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"dry-run": false,
"verbose": true,
"force": false,
"pkgFiles": ["package.json"],
"preReleaseId": null,
"increment": "patch",
"buildCommand": "npm run build",
"changelogCommand": "npm run build:changelog",
"safeBump": false,
"requireCleanWorkingDir": false,
"git": {
"commit": true,
"commitMessage": "release: V ${version}",
"tag": true,
"tagName": "${version}",
"tagAnnotation": "release: V ${version}",
"push": true
},
"kooks": {
"before:init": ["npm run lint", "npm run test"],
"after:release": "npm run post:release"
},
"npm": {
"publish": true
},
"github": {
"release": false
},
"dist": {
"repo": false
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "eslint",
"infile": "CHANGELOG.md"
}
},
"prompt": {
"src": {
"status": true,
"commit": true,
"tag": true,
"push": true,
"release": true,
"publish": true
},
"dist": {
"status": true,
"commit": true,
"tag": true,
"push": true,
"release": true,
"publish": true
}
}
}