@google/gemini-cli 0.1.0 → 0.1.1
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/bundle/gemini.js +2 -2
- package/package.json +7 -1
package/bundle/gemini.js
CHANGED
|
@@ -198102,7 +198102,7 @@ async function createContentGeneratorConfig(model, authType, config2) {
|
|
|
198102
198102
|
return contentGeneratorConfig;
|
|
198103
198103
|
}
|
|
198104
198104
|
async function createContentGenerator(config2) {
|
|
198105
|
-
const version2 = "0.1.
|
|
198105
|
+
const version2 = "0.1.1";
|
|
198106
198106
|
const httpOptions = {
|
|
198107
198107
|
headers: {
|
|
198108
198108
|
"User-Agent": `GeminiCLI/${version2} (${process.platform}; ${process.arch})`
|
|
@@ -230419,7 +230419,7 @@ async function getPackageJson() {
|
|
|
230419
230419
|
// packages/cli/src/utils/version.ts
|
|
230420
230420
|
async function getCliVersion() {
|
|
230421
230421
|
const pkgJson = await getPackageJson();
|
|
230422
|
-
return "0.1.
|
|
230422
|
+
return "0.1.1";
|
|
230423
230423
|
}
|
|
230424
230424
|
|
|
230425
230425
|
// packages/cli/src/ui/hooks/slashCommandProcessor.ts
|
package/package.json
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@google/gemini-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"workspaces": [
|
|
6
6
|
"packages/*"
|
|
7
7
|
],
|
|
8
8
|
"repository": "google-gemini/gemini-cli",
|
|
9
|
+
"config": {
|
|
10
|
+
"sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.1.1"
|
|
11
|
+
},
|
|
9
12
|
"scripts": {
|
|
10
13
|
"generate": "node scripts/generate-git-commit-info.js",
|
|
11
14
|
"build": "node scripts/build.js",
|
|
@@ -75,5 +78,8 @@
|
|
|
75
78
|
"react-devtools-core": "^4.28.5",
|
|
76
79
|
"typescript-eslint": "^8.30.1",
|
|
77
80
|
"yargs": "^17.7.2"
|
|
81
|
+
},
|
|
82
|
+
"dependencies": {
|
|
83
|
+
"@google/gemini-cli": "^0.1.1"
|
|
78
84
|
}
|
|
79
85
|
}
|