forked from czabaj/protoc-gen-grpc-gateway-es
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.release-it.cjs
More file actions
37 lines (36 loc) · 755 Bytes
/
.release-it.cjs
File metadata and controls
37 lines (36 loc) · 755 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
30
31
32
33
34
35
36
37
const version = "${version}";
module.exports = {
git: {
push: true,
tagName: `v${version}`,
commitsPath: ".",
commitMessage: `chore: released version v${version}`,
requireCommits: true,
requireCommitsFail: false,
},
github: {
release: true,
releaseName: `v${version}`,
skipChecks: true,
},
hooks: {
"before:init": "bun test && bun run build",
"before:git:release": ["git add --all"],
},
npm: {
publish: false,
versionArgs: ["--workspaces false"],
},
plugins: {
"@release-it/conventional-changelog": {
path: ".",
infile: "CHANGELOG.md",
preset: {
name: "conventionalcommits",
},
gitRawCommitsOpts: {
path: ".",
},
},
},
};