-
Notifications
You must be signed in to change notification settings - Fork 15
/
.versionrc.json
39 lines (39 loc) · 1.04 KB
/
.versionrc.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
{
"$schema": "https://raw.githubusercontent.com/conventional-changelog/conventional-changelog-config-spec/master/versions/2.1.0/schema.json",
"types": [
{ "type": "build", "hidden": true },
{ "type": "chore", "hidden": true },
{ "type": "ci", "hidden": true },
{ "type": "docs", "section": "Documentation" },
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "perf", "section": "Performance Improvements" },
{ "type": "refactor", "section": "Refactorings" },
{ "type": "revert", "hidden": true },
{ "type": "style", "hidden": true },
{ "type": "test", "section": "Tests" }
],
"scripts": {
"postchangelog": "npx nx format"
},
"packageFiles": [
{
"filename": "package.json",
"type": "json"
}
],
"bumpFiles": [
{
"filename": "package.json",
"type": "json"
},
{
"filename": "package-lock.json",
"type": "json"
},
{
"filename": "nx-stylelint/package.json",
"type": "json"
}
]
}