Use hook-written continuation marker state to gate run completion checks and remove the noisy event-stream shutdown timeout log in run mode.
8 lines
202 B
TypeScript
8 lines
202 B
TypeScript
const isCI = Boolean(process.env.CI || process.env.GITHUB_ACTIONS)
|
|
|
|
export const displayChars = {
|
|
treeEnd: isCI ? "`-" : "└─",
|
|
treeIndent: " ",
|
|
treeJoin: isCI ? " " : " ",
|
|
} as const
|