sortie-dogs 0.5.5 → 0.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/plugin/gate.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Requirements: Node.js 22.6 or newer, npm, and OpenCode.
|
|
|
20
20
|
|
|
21
21
|
Guides: [日本語](docs/guide-ja.md) · [简体中文](docs/guide-zh-CN.md) · [CLI testing](docs/cli-testing.md)
|
|
22
22
|
|
|
23
|
-
Release: [v0.5.
|
|
23
|
+
Release: [v0.5.6](https://github.com/zufall-upon/Sortie-dogs/releases/tag/v0.5.6)
|
|
24
24
|
|
|
25
25
|
## Quick start
|
|
26
26
|
|
package/dist/plugin/gate.js
CHANGED
|
@@ -231,7 +231,8 @@ function isDirectFindHash(tokens) {
|
|
|
231
231
|
}
|
|
232
232
|
function isRemoteOnlyGitHubCommand(tokens) {
|
|
233
233
|
const command = tokens[1]?.toLowerCase();
|
|
234
|
-
return command === "
|
|
234
|
+
return ((command === "version" || command === "--version") && tokens.length === 2) ||
|
|
235
|
+
command === "project" || (command === "api" && tokens[2]?.toLowerCase() === "graphql") ||
|
|
235
236
|
(command === "auth" && tokens.length === 3 && tokens[2]?.toLowerCase() === "status");
|
|
236
237
|
}
|
|
237
238
|
function isRemoteGitHubMutation(tokens) {
|