Skip to content

Commit

Permalink
fix: release config
Browse files Browse the repository at this point in the history
  • Loading branch information
Walee Ahmed committed May 7, 2020
1 parent 8c6b40f commit 4a4e61f
Showing 1 changed file with 15 additions and 16 deletions.
31 changes: 15 additions & 16 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -1,27 +1,26 @@
module.exports = {
dryRun: false,
branches: ["master"],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
"dryRun": false,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
'@semantic-release/changelog',
"@semantic-release/changelog",
{
changelogFile: 'CHANGELOG.md'
"changelogFile": "docs/CHANGELOG.md"
}
],
'@semantic-release/npm',
'@semantic-release/github',
"@semantic-release/npm",
"@semantic-release/github",
[
'@semantic-release/git',
"@semantic-release/git",
{
assets: [
'CHANGELOG.md',
'package.json',
'package-lock.json'
"assets": [
"docs/CHANGELOG.md",
"package.json",
"package-lock.json"
],
message: 'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}'
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
};

0 comments on commit 4a4e61f

Please sign in to comment.