trpc-gen-python 0.1.0 → 0.1.1
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/bin.d.ts +2 -0
- package/dist/bin.js +16 -0
- package/dist/cli.d.ts +0 -1
- package/dist/cli.js +0 -1
- package/dist/introspect.js +2 -13
- package/package.json +3 -3
package/dist/bin.d.ts
ADDED
package/dist/bin.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { spawn } from "child_process";
|
|
3
|
+
import { dirname, join } from "path";
|
|
4
|
+
import { fileURLToPath } from "url";
|
|
5
|
+
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
6
|
+
// Run the CLI using tsx loader to handle TypeScript imports
|
|
7
|
+
// This ensures user's TypeScript files can be imported properly
|
|
8
|
+
const tsxLoader = join(__dirname, "..", "node_modules", "tsx", "dist", "loader.mjs");
|
|
9
|
+
const cliPath = join(__dirname, "cli.js");
|
|
10
|
+
const child = spawn(process.execPath, ["--import", tsxLoader, cliPath, ...process.argv.slice(2)], {
|
|
11
|
+
stdio: "inherit",
|
|
12
|
+
env: process.env,
|
|
13
|
+
});
|
|
14
|
+
child.on("exit", (code) => {
|
|
15
|
+
process.exit(code || 0);
|
|
16
|
+
});
|
package/dist/cli.d.ts
CHANGED
package/dist/cli.js
CHANGED
package/dist/introspect.js
CHANGED
|
@@ -1,20 +1,9 @@
|
|
|
1
|
-
import { resolve
|
|
1
|
+
import { resolve } from "path";
|
|
2
2
|
import { zodToJsonSchema } from "zod-to-json-schema";
|
|
3
3
|
import { inferOutputTypes } from "./infer-outputs.js";
|
|
4
4
|
export async function introspectRouter(config) {
|
|
5
5
|
const routerPath = resolve(process.cwd(), config.router.path);
|
|
6
|
-
//
|
|
7
|
-
const tsxPath = resolve(dirname(new URL(import.meta.url).pathname), "..", "node_modules", "tsx", "esm", "api.mjs");
|
|
8
|
-
// Register tsx so we can import .ts files
|
|
9
|
-
try {
|
|
10
|
-
const tsx = await import(tsxPath);
|
|
11
|
-
if (tsx.register) {
|
|
12
|
-
tsx.register();
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
catch {
|
|
16
|
-
// tsx may already be registered if running via tsx
|
|
17
|
-
}
|
|
6
|
+
// Import the router file - tsx loader is registered globally in bin.ts
|
|
18
7
|
const routerModule = await import(routerPath);
|
|
19
8
|
const router = routerModule[config.router.export];
|
|
20
9
|
if (!router) {
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "trpc-gen-python",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Generate Python (Pydantic + httpx) clients from tRPC routers",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "./dist/
|
|
6
|
+
"main": "./dist/bin.js",
|
|
7
7
|
"bin": {
|
|
8
|
-
"trpc-gen-python": "./dist/
|
|
8
|
+
"trpc-gen-python": "./dist/bin.js"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|