Skip to content

Commit

Permalink
fix(tslint-rules): don't publish npm on release
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Kinsley committed Aug 23, 2019
1 parent 50470f3 commit ce89150
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions packages/tslint-rules/.releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{ "type": "docs", "scope": "README", "release": "patch" },
{ "type": "refactor", "release": "patch" },
{ "type": "style", "release": "patch" }
],
"parserOpts": {
"noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES"]
}
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "angular",
"parserOpts": {
"noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES", "BREAKING"]
},
"writerOpts": {
"commitsSort": ["subject", "scope"]
}
}
]
]
}

0 comments on commit ce89150

Please sign in to comment.