@base44-preview/cli 0.0.37-pr.361.487ef13 → 0.0.37-pr.362.d099799
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/index.js +5 -2
- package/dist/cli/index.js.map +4 -4
- package/package.json +2 -1
package/dist/cli/index.js
CHANGED
|
@@ -225867,6 +225867,8 @@ function getAuthFilePath() {
|
|
|
225867
225867
|
return join(getBase44GlobalDir(), "auth", "auth.json");
|
|
225868
225868
|
}
|
|
225869
225869
|
function getTemplatesDir() {
|
|
225870
|
+
if (globalThis.__BASE44_TEMPLATES_DIR)
|
|
225871
|
+
return globalThis.__BASE44_TEMPLATES_DIR;
|
|
225870
225872
|
return join(__dirname2, "../templates");
|
|
225871
225873
|
}
|
|
225872
225874
|
function getTemplatesIndexPath() {
|
|
@@ -241556,6 +241558,7 @@ var package_default = {
|
|
|
241556
241558
|
"lint:fix": "biome check --write src tests",
|
|
241557
241559
|
test: "vitest run",
|
|
241558
241560
|
"test:watch": "vitest",
|
|
241561
|
+
"build:binaries": "bun run infra/build-binaries.ts",
|
|
241559
241562
|
knip: "knip",
|
|
241560
241563
|
"knip:fix": "knip --fix"
|
|
241561
241564
|
},
|
|
@@ -243698,7 +243701,7 @@ import { spawn as spawn2, spawnSync as spawnSync2 } from "node:child_process";
|
|
|
243698
243701
|
import { dirname as dirname11, join as join15 } from "node:path";
|
|
243699
243702
|
import { fileURLToPath as fileURLToPath7 } from "node:url";
|
|
243700
243703
|
var __dirname5 = dirname11(fileURLToPath7(import.meta.url));
|
|
243701
|
-
var WRAPPER_PATH = join15(__dirname5, "../deno-runtime/main.js");
|
|
243704
|
+
var WRAPPER_PATH = globalThis.__BASE44_DENO_WRAPPER_PATH ?? join15(__dirname5, "../deno-runtime/main.js");
|
|
243702
243705
|
var READY_TIMEOUT = 30000;
|
|
243703
243706
|
|
|
243704
243707
|
class FunctionManager {
|
|
@@ -248706,4 +248709,4 @@ export {
|
|
|
248706
248709
|
CLIExitError
|
|
248707
248710
|
};
|
|
248708
248711
|
|
|
248709
|
-
//# debugId=
|
|
248712
|
+
//# debugId=98008B65F3D086C764756E2164756E21
|