fix(cli): correct strict warning hint (#2221)

This commit is contained in:
Miguel Ángel
2026-07-10 22:57:29 -04:00
committed by GitHub
parent 7498eb4a3a
commit 5f22209a82
2 changed files with 18 additions and 1 deletions
+7 -1
View File
@@ -825,7 +825,7 @@ export default defineCommand({
console.log("");
process.exit(1);
}
console.log(c.dim(" Continuing render despite lint issues. Use --strict to block."));
console.log(c.dim(renderLintContinuationHint(strictErrors)));
console.log("");
}
}
@@ -1004,6 +1004,12 @@ export interface SingleRenderResult {
renderTimeMs: number;
}
export function renderLintContinuationHint(strictErrors: boolean): string {
return strictErrors
? " Continuing render despite lint warnings. Use --strict-all to block warnings."
: " Continuing render despite lint issues. Use --strict to block errors.";
}
interface RenderOptions {
fps: Fps;
quality: "draft" | "standard" | "high";