trpc-gen-python 0.1.1 → 0.1.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.
Files changed (2) hide show
  1. package/dist/bin.js +14 -3
  2. package/package.json +1 -1
package/dist/bin.js CHANGED
@@ -3,9 +3,20 @@ import { spawn } from "child_process";
3
3
  import { dirname, join } from "path";
4
4
  import { fileURLToPath } from "url";
5
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");
6
+ // Resolve tsx loader path using Node's module resolution
7
+ // tsx's main export points to loader.mjs, so resolving 'tsx' gives us the loader
8
+ let tsxLoader;
9
+ try {
10
+ // Use import.meta.resolve (ESM native way)
11
+ const tsxUrl = await import.meta.resolve("tsx");
12
+ tsxLoader = fileURLToPath(tsxUrl);
13
+ }
14
+ catch {
15
+ // Fallback for older Node versions or if resolution fails
16
+ // Try looking in parent node_modules (flat npm structure)
17
+ const parentNodeModules = join(__dirname, "..", "..", "tsx", "dist", "loader.mjs");
18
+ tsxLoader = parentNodeModules;
19
+ }
9
20
  const cliPath = join(__dirname, "cli.js");
10
21
  const child = spawn(process.execPath, ["--import", tsxLoader, cliPath, ...process.argv.slice(2)], {
11
22
  stdio: "inherit",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trpc-gen-python",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Generate Python (Pydantic + httpx) clients from tRPC routers",
5
5
  "type": "module",
6
6
  "main": "./dist/bin.js",