-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy path.releaserc
34 lines (34 loc) · 894 Bytes
/
.releaserc
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
{
"plugins": [
"@semantic-release/changelog",
["@semantic-release/commit-analyzer", {
"preset": "angular",
"releaseRules": [
{"type": "docs", "scope":"readme", "release": "patch"},
{"type": "refactor", "release": "patch"}
],
"parserOpts": {
"noteKeywords": ["BREAKING CHANGE:"]
}
}],
["@semantic-release/release-notes-generator", {
"preset": "angular",
"parserOpts": {
"noteKeywords": ["BREAKING CHANGE:"]
},
"writerOpts": {
"commitsSort": ["subject", "scope"]
}
}],
["@semantic-release/git", {
"assets": ["CHANGELOG.md"],
"message": "ci(release): update changelog [skip ci]"
}],
["semantic-release-vsce", {
"assets": "graphql-for-vscode.vsix"
}],
["@semantic-release/github", {
"assets": "graphql-for-vscode.vsix"
}]
]
}