-
-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy path.versionrc.js
More file actions
29 lines (27 loc) · 861 Bytes
/
Copy path.versionrc.js
File metadata and controls
29 lines (27 loc) · 861 Bytes
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 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: "pnpm run lint",
// Format the generated changelog.
postchangelog: "pnpm run format",
},
skip: {
tag: true,
},
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 },
],
};