scratch-semantic-release-co.../release.config.js
Christopher Willis-Ford e4e298f073 refactor: fork from @jedmao/semantic-release-npm-github-config@1.0.9
* Update repository references
* Update `package-lock.json`
* Rename `.releaserc.json` to `release.config.js`
* A few other minor tweaks
2022-05-20 10:35:49 -07:00

30 lines
655 B
JavaScript

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