From ea0454857fc7c146287bd10f6437dd787e5b4317 Mon Sep 17 00:00:00 2001 From: Radek Sienkiewicz Date: Thu, 30 Apr 2026 11:54:44 +0200 Subject: [PATCH] fix(cli): satisfy raw progress lint --- src/cli/progress.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/progress.ts b/src/cli/progress.ts index dcf8f4dcfae..742bb958752 100644 --- a/src/cli/progress.ts +++ b/src/cli/progress.ts @@ -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,