fix: add visible scripts typecheck progress

This commit is contained in:
Codex
2026-06-10 16:43:02 +00:00
parent 20dda46e03
commit e2c41a893e
7 changed files with 348 additions and 84 deletions
+1 -1
View File
@@ -363,7 +363,7 @@ async function main(): Promise<void> {
if (!result.ok) process.exitCode = 1;
return;
}
const result = runChecks(config, parseCheckOptions(args.slice(1)));
const result = await runChecks(config, parseCheckOptions(args.slice(1)));
emitJson(commandName, result, result.ok);
if (!result.ok) process.exitCode = 1;
return;