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 2c21df7 commit c8a22acCopy full SHA for c8a22ac
.releaserc.js
@@ -1,6 +1,15 @@
1
module.exports = {
2
plugins: [
3
- '@semantic-release/commit-analyzer',
+ [
4
+ '@semantic-release/commit-analyzer', {
5
+ 'releaseRules': [
6
+ // This rule allow to force a release by adding "force-release" in scope.
7
+ // Example: `chore(force-release): support new feature`
8
+ // Source: https://github.com/semantic-release/commit-analyzer#releaserules
9
+ { scope: 'force-release', release: 'patch' },
10
+ ],
11
+ },
12
13
'@semantic-release/release-notes-generator',
14
'@semantic-release/changelog',
15
'@semantic-release/npm',
0 commit comments