create-kide-app 0.0.25 → 0.0.26
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
|
@@ -289,8 +289,10 @@ async function main() {
|
|
|
289
289
|
try {
|
|
290
290
|
execSync(`${pm.run} cms:seed`, { cwd: projectDir, stdio: "pipe" });
|
|
291
291
|
s.stop("Demo content seeded");
|
|
292
|
-
} catch {
|
|
292
|
+
} catch (err) {
|
|
293
293
|
s.stop("Seeding failed — run `pnpm cms:seed` manually");
|
|
294
|
+
if (err.stderr) console.error(err.stderr.toString().slice(-1500));
|
|
295
|
+
if (err.stdout) console.error(err.stdout.toString().slice(-1500));
|
|
294
296
|
}
|
|
295
297
|
} else if (seedDemo && target === "cloudflare") {
|
|
296
298
|
p.note(
|