mirror of
https://github.com/Mintplex-Labs/node-llama-cpp.git
synced 2026-07-01 19:55:08 -04:00
dc88531843
* feat: save and load history to `chat` command * build: support patch bump of minor features * fix: show correct cli command on Windows
22 lines
646 B
JSON
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"
|
|
}]
|
|
]
|
|
}
|