@geekmidas/cli 1.10.38 → 1.10.40

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,5 +1,26 @@
1
1
  # @geekmidas/cli
2
2
 
3
+ ## 1.10.40
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`a20be2f`](https://github.com/geekmidas/toolbox/commit/a20be2faa4795600358904b751fa947d3cbb4c45), [`07093f5`](https://github.com/geekmidas/toolbox/commit/07093f5f911bf1ee48e53275da3cce398cc78ff6)]:
8
+ - @geekmidas/constructs@3.1.0
9
+
10
+ ## 1.10.39
11
+
12
+ ### Patch Changes
13
+
14
+ - 🐛 [`d70c6c0`](https://github.com/geekmidas/toolbox/commit/d70c6c0aeb8a79da2473ac77dbd8255a4a2f5651) Thanks [@geekmidas](https://github.com/geekmidas)! - Fix `package.json` exports so TypeScript declarations resolve correctly under NodeNext/Bundler module resolution. Each subpath export now nests `types` inside its `import`/`require` condition, pointing at the `.d.mts` and `.d.cts` files that `tsdown` actually emits (previously the exports referenced non-existent `.d.ts` files, causing type-resolution failures for consumers). Both ESM (`.mjs`) and CJS (`.cjs`) runtime entry points are preserved. Additionally, `@geekmidas/ui` had `import` paths pointing at `.js` files that were never emitted — those are corrected to `.mjs`.
15
+
16
+ - Updated dependencies [[`d70c6c0`](https://github.com/geekmidas/toolbox/commit/d70c6c0aeb8a79da2473ac77dbd8255a4a2f5651)]:
17
+ - @geekmidas/constructs@3.0.12
18
+ - @geekmidas/envkit@1.0.7
19
+ - @geekmidas/errors@1.0.1
20
+ - @geekmidas/logger@1.0.2
21
+ - @geekmidas/schema@1.0.2
22
+ - @geekmidas/telescope@1.0.1
23
+
3
24
  ## 1.10.38
4
25
 
5
26
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -35,35 +35,60 @@ const prompts = require_chunk.__toESM(require("prompts"));
35
35
 
36
36
  //#region package.json
37
37
  var name = "@geekmidas/cli";
38
- var version = "1.10.37";
38
+ var version = "1.10.39";
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";
42
42
  var exports$1 = {
43
43
  ".": {
44
- "types": "./dist/index.d.ts",
45
- "import": "./dist/index.mjs",
46
- "require": "./dist/index.cjs"
44
+ "import": {
45
+ "types": "./dist/index.d.mts",
46
+ "default": "./dist/index.mjs"
47
+ },
48
+ "require": {
49
+ "types": "./dist/index.d.cts",
50
+ "default": "./dist/index.cjs"
51
+ }
47
52
  },
48
53
  "./config": {
49
- "types": "./dist/config.d.ts",
50
- "import": "./dist/config.mjs",
51
- "require": "./dist/config.cjs"
54
+ "import": {
55
+ "types": "./dist/config.d.mts",
56
+ "default": "./dist/config.mjs"
57
+ },
58
+ "require": {
59
+ "types": "./dist/config.d.cts",
60
+ "default": "./dist/config.cjs"
61
+ }
52
62
  },
53
63
  "./workspace": {
54
- "types": "./dist/workspace/index.d.ts",
55
- "import": "./dist/workspace/index.mjs",
56
- "require": "./dist/workspace/index.cjs"
64
+ "import": {
65
+ "types": "./dist/workspace/index.d.mts",
66
+ "default": "./dist/workspace/index.mjs"
67
+ },
68
+ "require": {
69
+ "types": "./dist/workspace/index.d.cts",
70
+ "default": "./dist/workspace/index.cjs"
71
+ }
57
72
  },
58
73
  "./openapi": {
59
- "types": "./dist/openapi.d.ts",
60
- "import": "./dist/openapi.mjs",
61
- "require": "./dist/openapi.cjs"
74
+ "import": {
75
+ "types": "./dist/openapi.d.mts",
76
+ "default": "./dist/openapi.mjs"
77
+ },
78
+ "require": {
79
+ "types": "./dist/openapi.d.cts",
80
+ "default": "./dist/openapi.cjs"
81
+ }
62
82
  },
63
83
  "./openapi-react-query": {
64
- "types": "./dist/openapi-react-query.d.ts",
65
- "import": "./dist/openapi-react-query.mjs",
66
- "require": "./dist/openapi-react-query.cjs"
84
+ "import": {
85
+ "types": "./dist/openapi-react-query.d.mts",
86
+ "default": "./dist/openapi-react-query.mjs"
87
+ },
88
+ "require": {
89
+ "types": "./dist/openapi-react-query.d.cts",
90
+ "default": "./dist/openapi-react-query.cjs"
91
+ }
67
92
  }
68
93
  };
69
94
  var bin = { "gkm": "./bin/gkm.mjs" };
@@ -7085,25 +7110,25 @@ const CLI_VERSION = `~${pkg.version}`;
7085
7110
  * Run: pnpm --filter @geekmidas/cli sync-versions
7086
7111
  */
7087
7112
  const GEEKMIDAS_VERSIONS = {
7088
- "@geekmidas/audit": "~2.0.0",
7089
- "@geekmidas/auth": "~2.0.0",
7090
- "@geekmidas/cache": "~1.1.0",
7091
- "@geekmidas/client": "~4.0.4",
7092
- "@geekmidas/cloud": "~1.0.0",
7093
- "@geekmidas/constructs": "~3.0.10",
7094
- "@geekmidas/db": "~1.0.1",
7095
- "@geekmidas/emailkit": "~1.0.0",
7096
- "@geekmidas/envkit": "~1.0.6",
7097
- "@geekmidas/errors": "~1.0.0",
7098
- "@geekmidas/events": "~1.1.2",
7099
- "@geekmidas/logger": "~1.0.1",
7100
- "@geekmidas/rate-limit": "~2.0.0",
7101
- "@geekmidas/schema": "~1.0.1",
7102
- "@geekmidas/services": "~1.0.1",
7103
- "@geekmidas/storage": "~2.0.2",
7104
- "@geekmidas/studio": "~1.0.0",
7105
- "@geekmidas/telescope": "~1.0.0",
7106
- "@geekmidas/testkit": "~1.0.6",
7113
+ "@geekmidas/audit": "~2.0.1",
7114
+ "@geekmidas/auth": "~2.0.1",
7115
+ "@geekmidas/cache": "~1.1.1",
7116
+ "@geekmidas/client": "~4.0.5",
7117
+ "@geekmidas/cloud": "~1.0.1",
7118
+ "@geekmidas/constructs": "~3.0.14",
7119
+ "@geekmidas/db": "~1.0.2",
7120
+ "@geekmidas/emailkit": "~1.0.1",
7121
+ "@geekmidas/envkit": "~1.0.7",
7122
+ "@geekmidas/errors": "~1.0.1",
7123
+ "@geekmidas/events": "~1.1.4",
7124
+ "@geekmidas/logger": "~1.0.2",
7125
+ "@geekmidas/rate-limit": "~2.0.1",
7126
+ "@geekmidas/schema": "~1.0.2",
7127
+ "@geekmidas/services": "~1.0.4",
7128
+ "@geekmidas/storage": "~2.0.3",
7129
+ "@geekmidas/studio": "~1.0.1",
7130
+ "@geekmidas/telescope": "~1.0.1",
7131
+ "@geekmidas/testkit": "~1.0.9",
7107
7132
  "@geekmidas/cli": CLI_VERSION
7108
7133
  };
7109
7134