@base44-preview/cli 0.0.38-pr.362.74cb80f → 0.0.38-pr.362.c4dd5b1

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.
@@ -9,6 +9,7 @@
9
9
  import { existsSync, mkdirSync } from "node:fs";
10
10
  import { homedir } from "node:os";
11
11
  import { join } from "node:path";
12
+ import { runCLI } from "../src/cli/index.js";
12
13
  // Bun embeds this file into the compiled binary.
13
14
  // At runtime, it resolves to a path inside the $bunfs virtual filesystem.
14
15
  // Only Bun.file() can read these paths — Node.js fs APIs and external
@@ -36,5 +37,4 @@ if (!process.stdin.isTTY || !process.stdout.isTTY) {
36
37
  process.env.CI = "true";
37
38
  }
38
39
 
39
- const { runCLI } = await import("../src/cli/index.js");
40
- await runCLI({ assetsDir });
40
+ await runCLI();