forked from cmfcmf/docusaurus-search-local
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.versionrc.js
26 lines (24 loc) · 829 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
const files = ["packages/docusaurus-search-local/package.json"];
module.exports = {
packageFiles: files,
bumpFiles: files,
sign: true,
scripts: {
// Make sure that there is nothing to format before generating the changelog.
prechangelog: "npm run lint",
// Format the generated changelog.
postchangelog: "npm run format",
},
header: `\
# Change Log
All notable changes to this project will be documented in this file.
This change log is automatically generated based on commit messags. See
[Commit Message Guidelines](CONTRIBUTING.md#commit-message-guidelines)
for more information.`,
types: [
{ type: "feat", section: "Features" },
{ type: "fix", section: "Bug Fixes" },
{ type: "deps", section: "Other", hidden: true },
{ type: "chore", section: "Other", hidden: true },
],
};