scratch-semantic-release-co.../release.config.js

31 lines
655 B
JavaScript
Raw Normal View History

module.exports = {
2019-06-11 15:01:53 -04:00
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogTitle": "# Changelog\n\nAll notable changes to this project will be documented in this file. See\n[Conventional Commits](https://conventionalcommits.org) for commit guidelines."
2019-06-11 15:01:53 -04:00
}
],
[
"@semantic-release/npm",
{
"tarballDir": "pack"
2019-06-11 15:01:53 -04:00
}
],
[
"@semantic-release/github",
{
"assets": "pack/*.tgz"
2019-06-11 15:01:53 -04:00
}
],
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
};