configs/home/.zsh-distrobox/themes/spaceship-prompt/.releaserc.json

34 lines
886 B
JSON
Raw Normal View History

2023-06-16 22:58:47 +02:00
{
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/changelog",
["semantic-release-license", {
"license": {
"path": "LICENSE.md"
}
}],
["@google/semantic-release-replace-plugin", {
"replacements": [{
"files": ["spaceship.zsh"],
"from": "export SPACESHIP_VERSION='.*'",
"to": "export SPACESHIP_VERSION='${nextRelease.version}'",
"results": [
{
"file": "spaceship.zsh",
"hasChanged": true,
"numMatches": 1,
"numReplacements": 1
}
],
"countMatches": true
}]
}],
["@semantic-release/git", {
"assets": ["package.json", "spaceship.zsh","CHANGELOG.md", "LICENSE.md"]
}]
]
}