Skip to content

Commit

Permalink
Merge pull request #48 from amejiarosario/automate-changelog-creation
Browse files Browse the repository at this point in the history
Automate changelog creation
  • Loading branch information
amejiarosario authored Mar 30, 2020
2 parents 965fbd1 + 43041ad commit 93543c4
Show file tree
Hide file tree
Showing 2 changed files with 196 additions and 8 deletions.
184 changes: 183 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 13 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"benchmark": "2.1.4",
"braces": ">=2.3.1",
"commitizen": "^4.0.3",
Expand Down Expand Up @@ -83,12 +85,6 @@
"description": "Introducing breaking changes.",
"name": "breaking"
},
{
"emoji": "🔖",
"code": ":bookmark: release",
"description": "Releasing / Version tags.",
"name": "release"
},
{
"emoji": "🔩",
"code": ":wrench: chore",
Expand All @@ -105,6 +101,16 @@
},
"release": {
"tagFormat": "${version}",
"branch": "master"
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
["@semantic-release/git", {
"message": ":bookmark: chore(release): ${nextRelease.version} \n\n${nextRelease.notes}"
}]
]
}
}

0 comments on commit 93543c4

Please sign in to comment.