create-kide-app 0.0.20 → 0.0.21
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/index.js +3 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -22,6 +22,7 @@ const runAsync = (cmd, cwd) =>
|
|
|
22
22
|
else {
|
|
23
23
|
const err = new Error(`Command failed: ${cmd}`);
|
|
24
24
|
err.stderr = stderr;
|
|
25
|
+
err.stdout = stdout;
|
|
25
26
|
reject(err);
|
|
26
27
|
}
|
|
27
28
|
});
|
|
@@ -344,7 +345,8 @@ async function main() {
|
|
|
344
345
|
s.stop("Deployed to Cloudflare");
|
|
345
346
|
} catch (err) {
|
|
346
347
|
s.stop("Deploy failed — run manually with: pnpm run deploy");
|
|
347
|
-
if (err.stderr) console.error(err.stderr.slice(-
|
|
348
|
+
if (err.stderr) console.error(err.stderr.slice(-1500));
|
|
349
|
+
if (err.stdout) console.error(err.stdout.slice(-1500));
|
|
348
350
|
}
|
|
349
351
|
}
|
|
350
352
|
}
|