@base44-preview/cli 0.0.37-pr.357.cd3f097 → 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 +8 -2
- package/dist/cli/index.js.map +3 -3
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -244422,7 +244422,13 @@ async function execAction(scriptArg, options8, extraArgs) {
|
|
|
244422
244422
|
copyFileSync(EXEC_WRAPPER_PATH, tempWrapper);
|
|
244423
244423
|
try {
|
|
244424
244424
|
const exitCode = await new Promise((resolvePromise) => {
|
|
244425
|
-
const child = spawn3("deno", [
|
|
244425
|
+
const child = spawn3("deno", [
|
|
244426
|
+
"run",
|
|
244427
|
+
"--allow-all",
|
|
244428
|
+
"--node-modules-dir=auto",
|
|
244429
|
+
tempWrapper,
|
|
244430
|
+
...extraArgs
|
|
244431
|
+
], {
|
|
244426
244432
|
env: {
|
|
244427
244433
|
...process.env,
|
|
244428
244434
|
SCRIPT_PATH: scriptPath,
|
|
@@ -248813,4 +248819,4 @@ export {
|
|
|
248813
248819
|
CLIExitError
|
|
248814
248820
|
};
|
|
248815
248821
|
|
|
248816
|
-
//# debugId=
|
|
248822
|
+
//# debugId=CD9B53F14958270F64756E2164756E21
|