-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bumprc.json
75 lines (75 loc) · 1.42 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
{
"provider": {
"type": "json",
"path": "package.json"
},
"tasks": {
"pre": [
{
"name": "ensure source code is formatted",
"command": "./node_modules/prettier/bin-prettier.js --config .prettierrc.json --list-different ./src"
},
{
"name": "building project",
"command": "pnpm run build:src"
}
],
"post": [
{
"name": "pushing to github",
"command": "git push --follow-tags"
},
{
"name": "publishing to npm",
"command": "pnpm publish",
"noSpinner": true
}
]
},
"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": "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}}"
}