Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: disable spinner on CI #313

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 15 additions & 7 deletions src/utils/spinner.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,25 @@
import {
type Spinner,
type SpinnerOptions,
wait as innerWait,
} from "../../deps.ts";
import { cyan, Spinner, type SpinnerOptions } from "../../deps.ts";

let current: Spinner | null = null;

export function wait(param: string | SpinnerOptions) {
if (typeof param === "string") {
param = { text: param };
}
param.interceptConsole = false;
current = innerWait({ stream: Deno.stderr, ...param });

current = new Spinner({
text: param.text,
prefix: param.prefix ?? "",
color: param.color ?? cyan,
spinner: param.spinner ?? "dots",
hideCursor: param.hideCursor ?? true,
indent: param.indent ?? 0,
interval: param.interval ?? 100,
stream: param.stream ?? Deno.stderr,
enabled: !Deno.env.get("CI"),
discardStdin: true,
interceptConsole: false,
});
return current;
}

Expand Down
Loading