@google/gemini-cli 0.1.9-nightly.250709.c8cf954e → 0.1.9-nightly.250710.da50a1ee
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/dist/google-gemini-cli-0.1.9.tgz +0 -0
- package/dist/package.json +6 -6
- package/dist/src/config/config.js +7 -5
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/settings.d.ts +5 -2
- package/dist/src/config/settings.js +38 -2
- package/dist/src/config/settings.js.map +1 -1
- package/dist/src/gemini.js +4 -1
- package/dist/src/gemini.js.map +1 -1
- package/dist/src/generated/git-commit.d.ts +1 -1
- package/dist/src/generated/git-commit.js +1 -1
- package/dist/src/nonInteractiveCli.d.ts +1 -1
- package/dist/src/nonInteractiveCli.js +4 -2
- package/dist/src/nonInteractiveCli.js.map +1 -1
- package/dist/src/ui/App.js +62 -7
- package/dist/src/ui/App.js.map +1 -1
- package/dist/src/ui/components/ThemeDialog.js +10 -9
- package/dist/src/ui/components/ThemeDialog.js.map +1 -1
- package/dist/src/ui/contexts/SessionContext.d.ts +3 -0
- package/dist/src/ui/contexts/SessionContext.js +12 -2
- package/dist/src/ui/contexts/SessionContext.js.map +1 -1
- package/dist/src/ui/hooks/slashCommandProcessor.js +2 -1
- package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -1
- package/dist/src/ui/hooks/useGeminiStream.d.ts +2 -2
- package/dist/src/ui/hooks/useGeminiStream.js +33 -10
- package/dist/src/ui/hooks/useGeminiStream.js.map +1 -1
- package/dist/src/ui/utils/errorParsing.d.ts +2 -10
- package/dist/src/ui/utils/errorParsing.js +34 -23
- package/dist/src/ui/utils/errorParsing.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@google/gemini-cli",
|
|
3
|
-
"version": "0.1.9-nightly.
|
|
3
|
+
"version": "0.1.9-nightly.250710.da50a1ee",
|
|
4
4
|
"description": "Gemini CLI",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
"dist"
|
|
26
26
|
],
|
|
27
27
|
"config": {
|
|
28
|
-
"sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.1.9-nightly.
|
|
28
|
+
"sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.1.9-nightly.250710.da50a1ee"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@google/gemini-cli-core": "0.1.9-nightly.
|
|
31
|
+
"@google/gemini-cli-core": "0.1.9-nightly.250710.da50a1ee",
|
|
32
32
|
"@types/update-notifier": "^6.0.8",
|
|
33
33
|
"command-exists": "^1.2.9",
|
|
34
34
|
"diff": "^7.0.0",
|
|
35
|
-
"dotenv": "^
|
|
36
|
-
"gaxios": "^
|
|
35
|
+
"dotenv": "^17.1.0",
|
|
36
|
+
"gaxios": "^7.1.1",
|
|
37
37
|
"glob": "^10.4.1",
|
|
38
38
|
"highlight.js": "^11.11.1",
|
|
39
39
|
"ink": "^6.0.1",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"ink-spinner": "^5.0.0",
|
|
45
45
|
"ink-text-input": "^6.0.0",
|
|
46
46
|
"lowlight": "^3.3.0",
|
|
47
|
-
"mime-types": "^
|
|
47
|
+
"mime-types": "^3.0.1",
|
|
48
48
|
"open": "^10.1.2",
|
|
49
49
|
"react": "^19.1.0",
|
|
50
50
|
"read-package-up": "^11.0.0",
|
|
51
|
-
"shell-quote": "^1.8.
|
|
51
|
+
"shell-quote": "^1.8.3",
|
|
52
52
|
"string-width": "^7.1.0",
|
|
53
53
|
"strip-ansi": "^7.1.0",
|
|
54
54
|
"strip-json-comments": "^3.1.1",
|