-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.versionrc.js
28 lines (27 loc) · 883 Bytes
/
.versionrc.js
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
const defaultStandardVersion = {
// for available options see https://github.com/conventional-changelog/conventional-changelog-config-spec/blob/master/versions/2.2.0/README.md
bumpFiles: [
{
filename: "package.json",
type: "json",
},
],
types: [
{ type: "build", section: "Build System" },
{ type: "chore", section: "Chore" },
{ type: "ci", section: "CI" },
{ type: "docs", section: "Documentation" },
{ type: "feat", section: "Features" },
{ type: "fix", section: "Bug Fixes" },
{ type: "perf", section: "Performance" },
{ type: "refactor", section: "Refactors" },
{ type: "revert", section: "Reverts" },
{ type: "style", section: "Styling" },
{ type: "test", section: "Tests" },
{ type: "theme", section: "Theme" },
],
"skip": {
"changelog": true,
}
};
module.exports = defaultStandardVersion;