@geekmidas/cli 1.10.0 → 1.10.2

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/index.mjs CHANGED
@@ -35,7 +35,7 @@ import prompts from "prompts";
35
35
 
36
36
  //#region package.json
37
37
  var name = "@geekmidas/cli";
38
- var version = "1.9.1";
38
+ var version = "1.10.1";
39
39
  var description = "CLI tools for building Lambda handlers, server applications, and generating OpenAPI specs";
40
40
  var private$1 = false;
41
41
  var type = "module";
@@ -6466,22 +6466,22 @@ const CLI_VERSION = `~${pkg.version}`;
6466
6466
  * Run: pnpm --filter @geekmidas/cli sync-versions
6467
6467
  */
6468
6468
  const GEEKMIDAS_VERSIONS = {
6469
- "@geekmidas/audit": "~1.0.0",
6470
- "@geekmidas/auth": "~1.0.0",
6471
- "@geekmidas/cache": "~1.0.0",
6472
- "@geekmidas/client": "~3.0.0",
6469
+ "@geekmidas/audit": "~2.0.0",
6470
+ "@geekmidas/auth": "~2.0.0",
6471
+ "@geekmidas/cache": "~1.1.0",
6472
+ "@geekmidas/client": "~4.0.0",
6473
6473
  "@geekmidas/cloud": "~1.0.0",
6474
- "@geekmidas/constructs": "~2.0.0",
6474
+ "@geekmidas/constructs": "~3.0.2",
6475
6475
  "@geekmidas/db": "~1.0.0",
6476
6476
  "@geekmidas/emailkit": "~1.0.0",
6477
6477
  "@geekmidas/envkit": "~1.0.3",
6478
6478
  "@geekmidas/errors": "~1.0.0",
6479
6479
  "@geekmidas/events": "~1.1.0",
6480
6480
  "@geekmidas/logger": "~1.0.0",
6481
- "@geekmidas/rate-limit": "~1.0.0",
6481
+ "@geekmidas/rate-limit": "~2.0.0",
6482
6482
  "@geekmidas/schema": "~1.0.0",
6483
6483
  "@geekmidas/services": "~1.0.1",
6484
- "@geekmidas/storage": "~1.0.0",
6484
+ "@geekmidas/storage": "~2.0.0",
6485
6485
  "@geekmidas/studio": "~1.0.0",
6486
6486
  "@geekmidas/telescope": "~1.0.0",
6487
6487
  "@geekmidas/testkit": "~1.0.2",
@@ -11194,7 +11194,8 @@ async function setupCommand(options = {}) {
11194
11194
  const composeFile = join(workspace.root, "docker-compose.yml");
11195
11195
  if (existsSync(composeFile)) {
11196
11196
  logger$1.log("");
11197
- await startWorkspaceServices(workspace);
11197
+ const resolvedPorts = await resolveServicePorts(workspace.root);
11198
+ await startWorkspaceServices(workspace, resolvedPorts.dockerEnv);
11198
11199
  } else logger$1.log("⚠️ No docker-compose.yml found. Skipping Docker services.");
11199
11200
  }
11200
11201
  printSummary(workspace, stage);