fix(cli): satisfy raw progress lint

This commit is contained in:
Radek Sienkiewicz
2026-04-30 11:54:44 +02:00
parent cce59a0333
commit ea0454857f

View File

@@ -66,7 +66,7 @@ export function createCliProgress(options: ProgressOptions): ProgressReporter {
const delayMs = typeof options.delayMs === "number" ? options.delayMs : DEFAULT_DELAY_MS;
const canOsc = isTty && supportsOscProgress(process.env, isTty);
const stdinIsRaw = process.stdin.isRaw === true;
const stdinIsRaw = process.stdin.isRaw;
const allowSpinner = shouldUseInteractiveProgressSpinner({
fallback: options.fallback,
streamIsTty: isTty,