Skip to content

Commit

Permalink
feat: Added semantic-release configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulMaddox committed Mar 9, 2019
1 parent 197bd11 commit 3b25fdb
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md",
"changelogTitle": "# Semantic Versioning Changelog"
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "./prepare-release.sh ${nextRelease.version}"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md"
]
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "dist/**"
}
]
}
]
]
}

0 comments on commit 3b25fdb

Please sign in to comment.