-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bumprc.json
80 lines (80 loc) · 1.43 KB
/
.bumprc.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"tasks": {
"pre": [
{
"name": "checking formatting",
"command": "pnpm run prettier:check"
},
{
"name": "checking linting",
"command": "pnpm run lint:check"
},
{
"name": "building",
"command": "pnpm run build:src"
}
],
"post": [
{
"name": "pushing to github",
"command": "git push --follow-tags"
}
]
},
"provider": {
"type": "json",
"path": "package.json",
"key": "version"
},
"types": [
{
"type": "feat",
"name": "Features"
},
{
"type": "fix",
"name": "Bug Fixes"
},
{
"type": "revert",
"name": "Reverted"
},
{
"type": "refactor",
"name": "Refactor"
},
{
"type": "build",
"name": "Build System"
},
{
"type": "init",
"name": "Init"
},
{
"type": "remove",
"name": "Removed Features"
},
{
"type": "deps",
"name": "Dependencies"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"hidden": true
}
],
"prompt": true,
"unreleasedHeader": "Unreleased",
"breakingHeader": "⚠ Breaking Changes",
"includeBody": true,
"includeNonConventionalCommits": true,
"tag": "v{{after}}",
"releaseSubject": "chore(release): {{tag}}",
"changelogSubject": "docs(changelog): {{tag}}",
"commitOrder": "asc"
}