-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.releaserc
More file actions
21 lines (21 loc) · 792 Bytes
/
.releaserc
File metadata and controls
21 lines (21 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"plugins": [
["@semantic-release/commit-analyzer", {
"preset": "conventionalcommits"
}],
["@semantic-release/release-notes-generator", {
"preset": "conventionalcommits"
}],
["@semantic-release/exec", {
"prepareCmd": "npm version ${nextRelease.version} --no-git-tag-version --allow-same-version && node scripts/update-repo-changelog.js --version=${nextRelease.version} --prev-tag=${lastRelease.version}",
"publishCmd": "npm run build"
}],
["@semantic-release/github", {
"assets": [{
"path": "dist/exist-function-documentation-*.xar",
"name": "exist-function-documentation-${nextRelease.version}.xar",
"label": "Expath package (exist-function-documentation-${nextRelease.version}.xar)"
}]
}]
]
}