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

32 lines
904 B
JavaScript
Raw Normal View History

module.exports = {
"branches": ["main"],
2022-05-20 20:31:59 -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."
}
],
[
"@semantic-release/git",
2022-05-20 20:31:59 -04:00
{
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
2022-05-20 20:31:59 -04:00
}
],
[
"@semantic-release/npm",
2022-05-20 20:31:59 -04:00
{
"tarballDir": "pack"
2022-05-20 20:31:59 -04:00
}
],
[
"@semantic-release/github",
2022-05-20 20:31:59 -04:00
{
"assets": "pack/*.tgz"
2022-05-20 20:31:59 -04:00
}
]
],
};