-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(release-utils): added changelog generation & deprecation of old ve…
…rsions plugins Expanded the capabilities of semantic-release system to generate the CHANGELOG files that will be included with the distribution packages. Separately, we can automatically deprecate versions that we don't intend to support anymore which is basically 1 version back in all series major/minor/update.
- Loading branch information
1 parent
bea5544
commit 6ec96b8
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
module.exports = { | ||
branches: ["master", "next"], | ||
plugins: [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/release-notes-generator", | ||
"@semantic-release/changelog", | ||
"@semantic-release/npm", | ||
"@semantic-release/github", | ||
[ | ||
"semantic-release-npm-deprecate-old-versions", | ||
{ | ||
rules: [ | ||
"supportLatest", | ||
"supportPreReleaseIfNotReleased", | ||
"deprecateAll" | ||
] | ||
} | ||
] | ||
] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters