forked from Typeform/embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.releaserc
31 lines (31 loc) · 806 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
{
"branches": [
"main"
],
extends: [
"semantic-release-monorepo"
],
"plugins": [
["@semantic-release/commit-analyzer", {
"releaseRules": [
{breaking: true, release: "major"},
{revert: true, release: "patch"},
{type: "feat", release: "minor"},
{type: "fix", release: "patch"},
{type: "perf", release: "patch"},
{type: "chore", scope: "deps", release: "patch"}
],
"parserOpts": {
"noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES"]
}
}],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
["@semantic-release/exec", {
"successCmd": "yarn post-release"
}],
"@semantic-release/git",
"@semantic-release/github"
]
}