We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 711237b commit 09a9853Copy full SHA for 09a9853
.releaserc.json
@@ -18,7 +18,39 @@
18
"prerelease": true
19
}
20
],
21
- "plugins": [["@semantic-release/npm"], ["@semantic-release/github"]],
+ "plugins": [
22
+ [
23
+ "@semantic-release/commit-analyzer",
24
+ {
25
+ "preset": "angular",
26
+ "releaseRules": [
27
28
+ "type": "breaking",
29
+ "release": "major"
30
+ },
31
32
+ "type": "feat",
33
+ "release": "minor"
34
35
36
+ "type": "fix",
37
+ "release": "patch"
38
39
40
+ "type": "perf",
41
42
43
44
+ "subject": "*",
45
46
+ }
47
+ ]
48
49
+ ],
50
+ "@semantic-release/release-notes-generator",
51
+ "@semantic-release/npm",
52
+ "@semantic-release/github"
53
54
"dryRun": false,
55
"ci": true
56
0 commit comments