-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(semantic-release): Add more extensions
- Loading branch information
JuanSe Dussan
authored and
JuanSe Dussan
committed
Oct 24, 2019
1 parent
ef8c118
commit 40f0e01
Showing
4 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,25 @@ | ||
module.exports = { | ||
branch: "master", | ||
plugins: [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/github", | ||
"@semantic-release/npm", | ||
"@semantic-release/release-notes-generator", | ||
[ | ||
"@semantic-release/git", | ||
{ | ||
assets: ["README.md"], | ||
message: | ||
"chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" | ||
} | ||
], | ||
[ | ||
"@semantic-release/changelog", | ||
{ | ||
changelogFile: "CHANGELOG.md" | ||
} | ||
], | ||
"@semantic-release/git", | ||
"@semantic-release/changelog" | ||
] | ||
}; |