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
| const defaultStandardVersion = require('@davidsneighbour/release-config');
| const localStandardVersion = {
| scripts: {},
| bumpFiles: [
| {
| filename: "package.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;
|
|