@cocreate/cli 1.56.4 → 1.56.5
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/CoCreate.config.js
CHANGED
|
@@ -276,10 +276,6 @@ module.exports = {
|
|
|
276
276
|
"path": "../CoCreate-utils",
|
|
277
277
|
"repo": "github.com/CoCreate-app/CoCreate-utils.git"
|
|
278
278
|
},
|
|
279
|
-
{
|
|
280
|
-
"path": "../CoCreate-uuid",
|
|
281
|
-
"repo": "github.com/CoCreate-app/CoCreate-uuid.git"
|
|
282
|
-
},
|
|
283
279
|
{
|
|
284
280
|
"path": "../CoCreate-validation",
|
|
285
281
|
"repo": "github.com/CoCreate-app/CoCreate-validation.git"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/cli",
|
|
3
|
-
"version": "1.56.
|
|
3
|
+
"version": "1.56.5",
|
|
4
4
|
"description": "Polyrepo management bash CLI tool. Run all git commands and yarn commands on multiple repositories. Also includes a few custom macros for cloning, installing, etc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -51,7 +51,6 @@
|
|
|
51
51
|
"@cocreate/acme": "^1.4.0",
|
|
52
52
|
"@cocreate/config": "^1.14.0",
|
|
53
53
|
"@cocreate/file": "^1.22.0",
|
|
54
|
-
"@cocreate/nginx": "^1.4.4",
|
|
55
54
|
"@google/generative-ai": "0.24.1"
|
|
56
55
|
},
|
|
57
56
|
"allowScripts": {
|
|
@@ -65,13 +64,11 @@
|
|
|
65
64
|
"@cocreate/filter@1.33.6": true,
|
|
66
65
|
"@cocreate/indexeddb@1.23.4": true,
|
|
67
66
|
"@cocreate/local-storage@1.16.5": true,
|
|
68
|
-
"@cocreate/nginx@1.4.4": true,
|
|
69
67
|
"@cocreate/observer@1.19.0": true,
|
|
70
68
|
"@cocreate/organizations@1.30.1": true,
|
|
71
69
|
"@cocreate/render@1.46.1": true,
|
|
72
70
|
"@cocreate/socket-client@1.40.5": true,
|
|
73
71
|
"@cocreate/utils@1.42.2": true,
|
|
74
|
-
"@cocreate/uuid@1.12.4": true,
|
|
75
72
|
"@cocreate/webpack@1.4.3": true
|
|
76
73
|
}
|
|
77
74
|
}
|
package/src/commands/config.js
CHANGED
|
@@ -49,7 +49,7 @@ const MODEL_NAME = "gemini-2.5-flash-lite";
|
|
|
49
49
|
// Exported function to generate translation object for HTML source and languages
|
|
50
50
|
async function getApiKey(options) {
|
|
51
51
|
if (options.apiKey) return options.apiKey;
|
|
52
|
-
const config = await Config({
|
|
52
|
+
const config = await Config.request({
|
|
53
53
|
GoogleGenerativeAIApiKey: {
|
|
54
54
|
prompt: "Enter your Google Generative AI API key: "
|
|
55
55
|
}
|