Files
node-llama-cpp/.releaserc.json
T
Gilad S dc88531843 feat(minor): save and load history to chat command (#71)
* feat: save and load history to `chat` command
* build: support patch bump of minor features
* fix: show correct cli command on Windows
2023-10-12 22:29:58 +03:00

22 lines
646 B
JSON

{
"branches": [
"master"
],
"ci": true,
"plugins": [
["@semantic-release/commit-analyzer", {
"preset": "angular",
"releaseRules": [
{"type": "feat", "scope": "minor", "release": "patch"},
{"type": "docs", "scope": "README", "release": "patch"}
]
}],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
["@semantic-release/exec", {
"publishCmd": "echo \"${nextRelease.version}\" > .semanticRelease.npmPackage.deployedVersion.txt"
}]
]
}