Skip to content

Commit

Permalink
ci: add some semantic-release plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
NoriSte committed Oct 14, 2019
1 parent cf84126 commit 3980edc
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,28 @@
module.exports = {
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm"
"@semantic-release/github",
"@semantic-release/npm",
[
"semantic-release/commit-analyzer",
{
preset: "angular",
parserOpts: {
noteKeywords: ["BREAKING CHANGE", "BREAKING CHANGES", "BREAKING"]
}
}
],
[
"semantic-release/release-notes-generator",
{
preset: "angular",
parserOpts: {
noteKeywords: ["BREAKING CHANGE", "BREAKING CHANGES", "BREAKING"]
},
writerOpts: {
commitsSort: ["subject", "scope"]
}
}
]
]
};

0 comments on commit 3980edc

Please sign in to comment.