@base44-preview/cli 0.0.37-pr.357.32b66d6 → 0.0.37-pr.357.87da1eb
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
|
@@ -244384,7 +244384,6 @@ function readStdin() {
|
|
|
244384
244384
|
});
|
|
244385
244385
|
}
|
|
244386
244386
|
async function execAction(scriptArg, options8, extraArgs) {
|
|
244387
|
-
verifyDenoIsInstalled();
|
|
244388
244387
|
let scriptPath;
|
|
244389
244388
|
let tempFile = null;
|
|
244390
244389
|
const hasFile = scriptArg !== undefined;
|
|
@@ -244402,6 +244401,7 @@ async function execAction(scriptArg, options8, extraArgs) {
|
|
|
244402
244401
|
]
|
|
244403
244402
|
});
|
|
244404
244403
|
}
|
|
244404
|
+
verifyDenoIsInstalled();
|
|
244405
244405
|
if (hasFile) {
|
|
244406
244406
|
scriptPath = `file://${resolve6(scriptArg)}`;
|
|
244407
244407
|
} else {
|
|
@@ -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=D0BCB3536472873564756E2164756E21
|