-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
.versionrc.cjs
33 lines (33 loc) · 937 Bytes
/
.versionrc.cjs
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
const defaultStandardVersion = require('@davidsneighbour/release-config');
const localStandardVersion = {
scripts: {},
bumpFiles: [
{
filename: "package.json",
type: "json",
},
{
filename: "exampleSite/data/ananke/build.json",
type: "json",
},
],
header: "# Changelog",
types: [
{ type: "content", section: "Content" },
{ type: "docs", section: "Documentation" },
{ type: "feat", section: "Features" },
{ type: "theme", section: "Theme" },
{ type: "style", section: "Styling" },
{ type: "refactor", section: "Refactors" },
{ type: "test", section: "Tests" },
{ type: "chore", section: "Chore" },
{ type: "config", section: "Configuration" },
{ type: "build", section: "Build System" },
{ type: "ci", section: "CI" },
]
};
const standardVersion = {
...defaultStandardVersion,
...localStandardVersion,
};
module.exports = standardVersion;