scratch-semantic-release-co.../release.config.js
Christopher Willis-Ford d001e99191 fix(ci): fix release config by moving branches setting
Instead of merging the configuration values in `package.json` with those
in `relase.config.js`, the `package.json` configuration was treated as
the only configuration.
2022-05-20 17:51:34 -07:00

31 lines
904 B
JavaScript

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