@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/CHANGELOG.md +15 -0
- package/dist/index.cjs +10 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +10 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/init/versions.ts +7 -7
- package/src/setup/index.ts +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @geekmidas/cli
|
|
2
2
|
|
|
3
|
+
## 1.10.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 🐛 [`fefefe0`](https://github.com/geekmidas/toolbox/commit/fefefe0e7825d95c333375ea280e9aba23599bf0) Thanks [@geekmidas](https://github.com/geekmidas)! - Fix issue with env loading on docker during setup
|
|
8
|
+
|
|
9
|
+
## 1.10.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- ✨ [`bfc5a4f`](https://github.com/geekmidas/toolbox/commit/bfc5a4f656445bb389b0532e9d3385d2e66a28fe) Thanks [@geekmidas](https://github.com/geekmidas)! - Add function context and suport for partitions
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [[`bfc5a4f`](https://github.com/geekmidas/toolbox/commit/bfc5a4f656445bb389b0532e9d3385d2e66a28fe)]:
|
|
16
|
+
- @geekmidas/constructs@3.0.1
|
|
17
|
+
|
|
3
18
|
## 1.10.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
package/dist/index.cjs
CHANGED
|
@@ -35,7 +35,7 @@ const prompts = require_chunk.__toESM(require("prompts"));
|
|
|
35
35
|
|
|
36
36
|
//#region package.json
|
|
37
37
|
var name = "@geekmidas/cli";
|
|
38
|
-
var version = "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": "~
|
|
6470
|
-
"@geekmidas/auth": "~
|
|
6471
|
-
"@geekmidas/cache": "~1.
|
|
6472
|
-
"@geekmidas/client": "~
|
|
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": "~
|
|
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": "~
|
|
6481
|
+
"@geekmidas/rate-limit": "~2.0.0",
|
|
6482
6482
|
"@geekmidas/schema": "~1.0.0",
|
|
6483
6483
|
"@geekmidas/services": "~1.0.1",
|
|
6484
|
-
"@geekmidas/storage": "~
|
|
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 = (0, node_path.join)(workspace.root, "docker-compose.yml");
|
|
11195
11195
|
if ((0, node_fs.existsSync)(composeFile)) {
|
|
11196
11196
|
logger$1.log("");
|
|
11197
|
-
await
|
|
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);
|