@cocreate/cli 1.56.3 → 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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.56.4](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.56.3...v1.56.4) (2026-07-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * remove deprecated repository configurations from CoCreate.config.js ([d1f0a67](https://github.com/CoCreate-app/CoCreate-cli/commit/d1f0a67d8324fbcec9638c84a9a6a5b7164ee0bd))
7
+
1
8
  ## [1.56.3](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.56.2...v1.56.3) (2026-07-19)
2
9
 
3
10
 
@@ -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"
@@ -489,20 +485,6 @@ module.exports = {
489
485
  "fs/webpack"
490
486
  ]
491
487
  },
492
- {
493
- "path": "../CoCreate-node-autoscaler",
494
- "repo": "github.com/CoCreate-app/CoCreate-node-autoscaler.git",
495
- "exclude": [
496
- "fs/webpack"
497
- ]
498
- },
499
- {
500
- "path": "../../CoCreate-plugins/CoCreate-nginx",
501
- "repo": "github.com/CoCreate-app/CoCreate-nginx.git",
502
- "exclude": [
503
- "fs/webpack"
504
- ]
505
- },
506
488
  {
507
489
  "path": "../CoCreate-server",
508
490
  "repo": "github.com/CoCreate-app/CoCreate-server.git",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/cli",
3
- "version": "1.56.3",
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
  }
@@ -10,6 +10,6 @@ module.exports = async function (repos, args) {
10
10
  object[arg[0]] = { value: arg[1] }
11
11
  }
12
12
 
13
- await config(object)
13
+ await config.request(object)
14
14
 
15
15
  }
@@ -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
  }