create-better-t-stack 3.24.0 → 3.25.3
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/cli.mjs +2 -2
- package/dist/index.d.mts +222 -765
- package/dist/index.mjs +1 -1
- package/dist/{src-SYbbb0XN.mjs → src-BsKaExN8.mjs} +134 -109
- package/package.json +4 -4
package/dist/cli.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { _ as types_exports, i as SchemaNameSchema, l as create, m as getSchemaResult, s as add, u as createBtsCli, v as getLatestCLIVersion } from "./src-
|
|
2
|
+
import { _ as types_exports, i as SchemaNameSchema, l as create, m as getSchemaResult, s as add, u as createBtsCli, v as getLatestCLIVersion } from "./src-BsKaExN8.mjs";
|
|
3
3
|
import z from "zod";
|
|
4
4
|
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
5
5
|
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
@@ -288,6 +288,6 @@ This command is intended to be launched by an MCP client, for example:
|
|
|
288
288
|
process.exit(0);
|
|
289
289
|
}
|
|
290
290
|
await startBtsMcpServer();
|
|
291
|
-
} else createBtsCli().run();
|
|
291
|
+
} else await createBtsCli().run();
|
|
292
292
|
//#endregion
|
|
293
293
|
export {};
|