@base44-preview/cli 0.0.37-pr.357.cad1676 → 0.0.37-pr.357.e36d383

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 CHANGED
@@ -244354,7 +244354,7 @@ function getDevCommand(context) {
244354
244354
 
244355
244355
  // src/cli/commands/exec.ts
244356
244356
  import { spawn as spawn3, spawnSync as spawnSync3 } from "node:child_process";
244357
- import { unlinkSync, writeFileSync as writeFileSync2 } from "node:fs";
244357
+ import { copyFileSync, unlinkSync, writeFileSync as writeFileSync2 } from "node:fs";
244358
244358
  import { tmpdir as tmpdir2 } from "node:os";
244359
244359
  import { dirname as dirname12, join as join16, resolve as resolve6 } from "node:path";
244360
244360
  import { fileURLToPath as fileURLToPath8 } from "node:url";
@@ -244418,9 +244418,17 @@ async function execAction(scriptArg, options8, extraArgs) {
244418
244418
  } catch (error48) {
244419
244419
  throw await ApiError.fromHttpError(error48, "exchanging platform token for app user token");
244420
244420
  }
244421
+ const tempWrapper = join16(tmpdir2(), `base44-exec-wrapper-${Date.now()}.js`);
244422
+ copyFileSync(EXEC_WRAPPER_PATH, tempWrapper);
244421
244423
  try {
244422
244424
  const exitCode = await new Promise((resolvePromise) => {
244423
- const child = spawn3("deno", ["run", "--allow-all", EXEC_WRAPPER_PATH, ...extraArgs], {
244425
+ const child = spawn3("deno", [
244426
+ "run",
244427
+ "--allow-all",
244428
+ "--node-modules-dir=auto",
244429
+ tempWrapper,
244430
+ ...extraArgs
244431
+ ], {
244424
244432
  env: {
244425
244433
  ...process.env,
244426
244434
  SCRIPT_PATH: scriptPath,
@@ -244438,10 +244446,12 @@ async function execAction(scriptArg, options8, extraArgs) {
244438
244446
  process.exitCode = exitCode;
244439
244447
  }
244440
244448
  } finally {
244441
- if (tempFile) {
244442
- try {
244443
- unlinkSync(tempFile);
244444
- } catch {}
244449
+ for (const f7 of [tempFile, tempWrapper]) {
244450
+ if (f7) {
244451
+ try {
244452
+ unlinkSync(f7);
244453
+ } catch {}
244454
+ }
244445
244455
  }
244446
244456
  }
244447
244457
  return {};
@@ -248809,4 +248819,4 @@ export {
248809
248819
  CLIExitError
248810
248820
  };
248811
248821
 
248812
- //# debugId=BFEF5AD8D1A6373164756E2164756E21
248822
+ //# debugId=CD9B53F14958270F64756E2164756E21