Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
library/.releaserc

54 lines
879 B
Text
Raw Normal View History

2021-07-03 03:01:50 +00:00
{
2021-07-05 22:06:11 +00:00
"branches": [
"stable"
],
2021-07-05 15:01:44 +00:00
"repositoryUrl": "https://code.relms.dev/NeonJS/library",
2021-07-03 03:01:50 +00:00
"ci": true,
"plugins": [
2021-07-05 22:06:11 +00:00
[
"@semantic-release/commit-analyzer",
{
"preset": "conventional-changelog",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES"
]
}
2021-07-03 03:01:50 +00:00
}
2021-07-05 22:06:11 +00:00
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventional-changelog",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES"
]
}
2021-07-03 03:01:50 +00:00
}
2021-07-05 22:06:11 +00:00
],
2021-07-03 03:01:50 +00:00
"@semantic-release/changelog",
2021-07-05 22:06:11 +00:00
[
"@semantic-release/npm",
{
"tarballDir": "dist"
}
],
[
"@saithodev/semantic-release-gitea",
{
"assets": "dist/*.tgz"
}
],
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}",
"assets": false
}
]
2021-07-03 03:01:50 +00:00
]
2021-07-05 22:55:30 +00:00
}