Skip to content

Commit 741d3b4

Browse files
committed
build: add standard-version config
1 parent 74a4066 commit 741d3b4

File tree

2 files changed

+64
-0
lines changed

2 files changed

+64
-0
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
.gitignore export-ignore
55
/.dependabot/ export-ignore
66
.editorconfig export-ignore
7+
.version.json export-ignore
78
.npmrc export-ignore
89
package.json export-ignore
910
package-lock.json export-ignore

.versionrc.json

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"types" : [
3+
{
4+
"type" : "build",
5+
"section": "Build System",
6+
"hidden" : false
7+
},
8+
{
9+
"type" : "ci",
10+
"section": "Continuous Integration",
11+
"hidden" : false
12+
},
13+
{
14+
"type" : "feat",
15+
"section": "Features",
16+
"hidden" : false
17+
},
18+
{
19+
"type" : "fix",
20+
"section": "Bug Fixes",
21+
"hidden" : false
22+
},
23+
{
24+
"type" : "docs",
25+
"section": "Documentation Changes",
26+
"hidden" : false
27+
},
28+
{
29+
"type" : "style",
30+
"section": "Code Style Changes",
31+
"hidden" : false
32+
},
33+
{
34+
"type" : "refactor",
35+
"section": "Code Refactoring",
36+
"hidden" : false
37+
},
38+
{
39+
"type" : "perf",
40+
"section": "Performance Improvements",
41+
"hidden" : false
42+
},
43+
{
44+
"type" : "test",
45+
"section": "Tests",
46+
"hidden" : false
47+
},
48+
{
49+
"type" : "chore",
50+
"hidden": true
51+
},
52+
{
53+
"type" : "revert",
54+
"section": "Reverts",
55+
"hidden" : false
56+
},
57+
{
58+
"type" : "release",
59+
"hidden": true
60+
}
61+
],
62+
"releaseCommitMessageFormat": "release: {{currentTag}}"
63+
}

0 commit comments

Comments
 (0)