@geekmidas/cli 0.0.23 → 0.0.24
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.
|
@@ -87,7 +87,7 @@ ${imports}
|
|
|
87
87
|
export function createApp(app?: Hono, enableOpenApi: boolean = ${enableOpenApi}): Hono {
|
|
88
88
|
const honoApp = app || new Hono();
|
|
89
89
|
|
|
90
|
-
const endpoints: Endpoint<any, any, any, any, any, any>[] = [
|
|
90
|
+
const endpoints: Endpoint<any, any, any, any, any, any, any>[] = [
|
|
91
91
|
${allExportNames.join(",\n ")}
|
|
92
92
|
];
|
|
93
93
|
|
|
@@ -86,7 +86,7 @@ ${imports}
|
|
|
86
86
|
export function createApp(app?: Hono, enableOpenApi: boolean = ${enableOpenApi}): Hono {
|
|
87
87
|
const honoApp = app || new Hono();
|
|
88
88
|
|
|
89
|
-
const endpoints: Endpoint<any, any, any, any, any, any>[] = [
|
|
89
|
+
const endpoints: Endpoint<any, any, any, any, any, any, any>[] = [
|
|
90
90
|
${allExportNames.join(",\n ")}
|
|
91
91
|
];
|
|
92
92
|
|
package/dist/build.cjs
CHANGED
package/dist/build.mjs
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
const require_chunk = require('./chunk-CUT6urMc.cjs');
|
|
3
3
|
require('./config-BNqUMsvc.cjs');
|
|
4
4
|
require('./loadEndpoints-BBIavB9h.cjs');
|
|
5
|
-
const require_build = require('./build-
|
|
5
|
+
const require_build = require('./build-BTggTCYL.cjs');
|
|
6
6
|
const require_openapi_react_query = require('./openapi-react-query-C1JLYUOs.cjs');
|
|
7
7
|
const require_openapi = require('./openapi-D4QQJUPY.cjs');
|
|
8
8
|
const commander = require_chunk.__toESM(require("commander"));
|
|
9
9
|
|
|
10
10
|
//#region package.json
|
|
11
11
|
var name = "@geekmidas/cli";
|
|
12
|
-
var version = "0.0.
|
|
12
|
+
var version = "0.0.24";
|
|
13
13
|
var private$1 = false;
|
|
14
14
|
var type = "module";
|
|
15
15
|
var bin = { "gkm": "./dist/index.cjs" };
|
|
@@ -23,7 +23,7 @@ var dependencies = {
|
|
|
23
23
|
"lodash.set": "~4.3.2",
|
|
24
24
|
"fast-glob": "~3.3.3"
|
|
25
25
|
};
|
|
26
|
-
var peerDependencies = { "@geekmidas/api": "
|
|
26
|
+
var peerDependencies = { "@geekmidas/api": "workspace:*" };
|
|
27
27
|
var devDependencies = {
|
|
28
28
|
"@types/lodash.get": "~4.4.9",
|
|
29
29
|
"@types/lodash.set": "~4.3.9"
|
package/dist/index.mjs
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
#!/usr/bin/env -S npx tsx
|
|
2
2
|
import "./config-BciAdY6_.mjs";
|
|
3
3
|
import "./loadEndpoints-DAZ53Og2.mjs";
|
|
4
|
-
import { buildCommand } from "./build-
|
|
4
|
+
import { buildCommand } from "./build-Ca4P6_lY.mjs";
|
|
5
5
|
import { generateReactQueryCommand } from "./openapi-react-query-DpT3XHFC.mjs";
|
|
6
6
|
import { openapiCommand } from "./openapi-CksVdkh2.mjs";
|
|
7
7
|
import { Command } from "commander";
|
|
8
8
|
|
|
9
9
|
//#region package.json
|
|
10
10
|
var name = "@geekmidas/cli";
|
|
11
|
-
var version = "0.0.
|
|
11
|
+
var version = "0.0.24";
|
|
12
12
|
var private$1 = false;
|
|
13
13
|
var type = "module";
|
|
14
14
|
var bin = { "gkm": "./dist/index.cjs" };
|
|
@@ -22,7 +22,7 @@ var dependencies = {
|
|
|
22
22
|
"lodash.set": "~4.3.2",
|
|
23
23
|
"fast-glob": "~3.3.3"
|
|
24
24
|
};
|
|
25
|
-
var peerDependencies = { "@geekmidas/api": "
|
|
25
|
+
var peerDependencies = { "@geekmidas/api": "workspace:*" };
|
|
26
26
|
var devDependencies = {
|
|
27
27
|
"@types/lodash.get": "~4.4.9",
|
|
28
28
|
"@types/lodash.set": "~4.3.9"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geekmidas/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.24",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"fast-glob": "~3.3.3"
|
|
18
18
|
},
|
|
19
19
|
"peerDependencies": {
|
|
20
|
-
"@geekmidas/api": "0.0.
|
|
20
|
+
"@geekmidas/api": "0.0.46"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@types/lodash.get": "~4.4.9",
|
package/src/build.ts
CHANGED
|
@@ -185,7 +185,7 @@ ${imports}
|
|
|
185
185
|
export function createApp(app?: Hono, enableOpenApi: boolean = ${enableOpenApi}): Hono {
|
|
186
186
|
const honoApp = app || new Hono();
|
|
187
187
|
|
|
188
|
-
const endpoints: Endpoint<any, any, any, any, any, any>[] = [
|
|
188
|
+
const endpoints: Endpoint<any, any, any, any, any, any, any>[] = [
|
|
189
189
|
${allExportNames.join(',\n ')}
|
|
190
190
|
];
|
|
191
191
|
|