This commit is contained in:
Matt Kane
2026-04-01 11:51:57 +01:00
parent c8e318da5c
commit ca3c2b77e1
88 changed files with 313 additions and 481 deletions

View File

@@ -418,9 +418,7 @@ export const publishCommand = defineCommand({
process.exit(1);
}
} catch {
consola.error(
"No dist/ directory found. Run `emdash plugin bundle` first or use --build.",
);
consola.error("No dist/ directory found. Run `emdash plugin bundle` first or use --build.");
process.exit(1);
}
}

View File

@@ -135,9 +135,7 @@ export const seedCommand = defineCommand({
const seedPath = await resolveSeedPath(cwd, args.path);
if (!seedPath) {
consola.error("No seed file found");
consola.info(
"Provide a path, create .emdash/seed.json, or set emdash.seed in package.json",
);
consola.info("Provide a path, create .emdash/seed.json, or set emdash.seed in package.json");
process.exit(1);
}