-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.versionrc.json
46 lines (46 loc) · 1.34 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
40
41
42
43
44
45
46
{
"infile": "CHANGELOG.md",
"types": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "chore", "hidden": true},
{"type": "docs", "section": "Documentation"},
{"type": "style", "section": "Changes that do not affect the meaning of the code"},
{"type": "refactor", "section": "Code change that neither fixes a bug nor adds a feature"},
{"type": "perf", "section": "Code changes that improves performance"},
{"type": "test", "section": "Tests"},
{"type": "build", "section": "Build System", "hidden": true},
{"type": "ci", "section": "Continuous Integration"}
],
"packageFiles": [
{
"filename": "pubspec.yaml",
"updater": ".standard-version/standard-version-updater-pubspec.js"
}
],
"bumpFiles": [
{
"filename": "pubspec.yaml",
"updater": ".standard-version/standard-version-updater-pubspec.js"
},
{
"filename": "example/pubspec.lock",
"updater": ".standard-version/standard-version-updater-pubspec.lock.js"
},
{
"filename": "README.md",
"updater": ".standard-version/standard-version-updater-README.js"
},
{
"filename": "package.json",
"type": "json"
},
{
"filename": "package-lock.json",
"type": "json"
}
],
"tag-prefix": "",
"releaseCommitMessageFormat": "chore(release): version {{currentTag}}\n\nAuto generated version.",
"sign": false
}