Skip to content

Commit

Permalink
build: add release config for semantic release
Browse files Browse the repository at this point in the history
  • Loading branch information
exactlyaron committed Jan 18, 2019
1 parent 0e13784 commit f376221
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"branch": "master",
"analyzeCommits": {
"preset": "angular",
"releaseRules": [
{"type": "build", "scope":"deps", "release": "minor"}
]
},
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"generateNotes": {
"preset": "metahub"
},
"prepare": [
{
"path": "@semantic-release/changelog",
"changelogFile": "CHANGELOG.md"
},
{
"path": "@semantic-release/git",
"assets": ["CHANGELOG.md"]
},
"@semantic-release/npm"
],
"publish": [
"@semantic-release/npm",
"@semantic-release/github"
],
"success": ["@semantic-release/github"],
"fail": ["@semantic-release/github"]
}

0 comments on commit f376221

Please sign in to comment.