-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy path.release-it.json
34 lines (34 loc) · 1011 Bytes
/
.release-it.json
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
{
"npm": false,
"git": {
"tagName": "v${version}",
"tagAnnotation": "v${version}",
"requireCleanWorkingDir": true,
"commit": true,
"commitMessage": "release: v${version}",
"changelog": "echo '## Commits'; git log --pretty=format:'- %s %h by @%cn' ${from}...${to}; echo '\n\n**Changelog**: https://${repo.host}/${repo.repository}/compare/${latestTag}...TAG'",
"push": true,
"skipChecks": true
},
"github": {
"release": true,
"releaseName": "v${version}",
"releaseNotes": "echo \"${changelog}\" | sed 's|TAG|v${version}|'",
"web": true,
"skipChecks": true
},
"hooks": {
"before:init": ["pnpm build --filter './packages/*'"],
"after:bump": ["pnpm install"]
},
"plugins": {
"@release-it-plugins/workspaces": {
"workspaces": ["packages/*"],
"additionalManifests": {
"dependencyUpdates": ["examples/*/package.json", "explorer/package.json"],
"versionUpdates": []
},
"skipChecks": true
}
}
}