2022-05-20 13:14:49 -04:00
module . exports = {
2022-05-31 15:11:19 -04:00
branches : [ 'main' ] ,
plugins : [
'@semantic-release/commit-analyzer' ,
'@semantic-release/release-notes-generator' ,
2022-05-20 20:31:59 -04:00
[
2022-05-31 15:11:19 -04:00
'@semantic-release/changelog' ,
2022-05-20 20:31:59 -04:00
{
2022-05-31 15:11:19 -04:00
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.'
2022-05-20 20:31:59 -04:00
}
] ,
[
2022-05-31 15:11:19 -04:00
'@semantic-release/git' ,
2022-05-20 20:31:59 -04:00
{
2022-05-31 15:11:19 -04:00
// eslint-disable-next-line no-template-curly-in-string
message : 'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}'
2022-05-20 20:31:59 -04:00
}
] ,
[
2022-05-31 15:11:19 -04:00
'@semantic-release/npm' ,
2022-05-20 20:31:59 -04:00
{
2022-05-31 15:11:19 -04:00
tarballDir : 'pack'
2022-05-20 20:31:59 -04:00
}
] ,
[
2022-05-31 15:11:19 -04:00
'@semantic-release/github' ,
2022-05-20 20:31:59 -04:00
{
2022-05-31 15:11:19 -04:00
assets : 'pack/*.tgz'
2022-05-20 20:31:59 -04:00
}
]
2022-05-31 15:11:19 -04:00
]
2022-05-20 13:14:49 -04:00
} ;