Skip to content

Commit

Permalink
feat: Setup releaserc
Browse files Browse the repository at this point in the history
  • Loading branch information
vantreeseba committed Feb 24, 2021
1 parent 6f5b084 commit eb0af93
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
{
"branches": [
"master"
],
"tagFormat": "${version}",
"plugins": [
[
"@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"
]
}
}
],
"@semantic-release/changelog",
"@semantic-release/npm",
[
"semantic-release-haxelib",
{
"haxelibPublish": true,
"additionalFiles": []
}
],
["@semantic-release/github", {
"assets": [
{"path": "dist/cs/dropecho.dungen/bin/dropecho.dungen.dll", "label": "C# DLL"}
]
}],
[
"@semantic-release/git",
{
"assets": [
"dist/**/*.{js,css}",
"*.md",
"package.json",
"haxelib.json"
]
}
]
],
"preset": "angular"
}

0 comments on commit eb0af93

Please sign in to comment.