githits 0.4.6 → 0.4.7
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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/.plugin/plugin.json +1 -1
- package/README.md +2 -2
- package/dist/cli.js +758 -251
- package/dist/index.js +1 -1
- package/dist/shared/{chunk-2fdxv7pe.js → chunk-70bn2pmx.js} +2 -2
- package/dist/shared/{chunk-a1hzwt2m.js → chunk-7b4f7fd5.js} +1 -1
- package/dist/shared/{chunk-f16s86ze.js → chunk-tm11qwgr.js} +4 -1
- package/gemini-extension.json +1 -1
- package/package.json +2 -2
- package/plugins/claude/.claude-plugin/plugin.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
createAuthStatusDependencies,
|
|
5
5
|
createContainer,
|
|
6
6
|
loadAutoLoginAuthSessionMetadata
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import"./chunk-
|
|
7
|
+
} from "./chunk-tm11qwgr.js";
|
|
8
|
+
import"./chunk-7b4f7fd5.js";
|
|
9
9
|
export {
|
|
10
10
|
loadAutoLoginAuthSessionMetadata,
|
|
11
11
|
createContainer,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
__require,
|
|
3
3
|
version
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-7b4f7fd5.js";
|
|
5
5
|
|
|
6
6
|
// src/services/app-config-paths.ts
|
|
7
7
|
var APP_DIR = "githits";
|
|
@@ -6136,6 +6136,9 @@ function parseVersionList(raw) {
|
|
|
6136
6136
|
import { checkbox, select } from "@inquirer/prompts";
|
|
6137
6137
|
|
|
6138
6138
|
class PromptServiceImpl {
|
|
6139
|
+
async select(message, choices, defaultValue) {
|
|
6140
|
+
return select({ message, choices, default: defaultValue });
|
|
6141
|
+
}
|
|
6139
6142
|
async checkbox(message, choices) {
|
|
6140
6143
|
return checkbox({ message, choices });
|
|
6141
6144
|
}
|
package/gemini-extension.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "githits",
|
|
3
3
|
"description": "CLI companion for GitHits - code examples from global open source for developers and AI assistants",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.7",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"url": "https://github.com/githits-com/githits-cli/issues"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": "^20.12.0 || >=22.13.0"
|
|
73
73
|
},
|
|
74
74
|
"publishConfig": {
|
|
75
75
|
"access": "public"
|