()
| 1088 | ] |
| 1089 | |
| 1090 | export function clearLine(): void { |
| 1091 | const tty = process.stdout.isTTY && !process.env.CI |
| 1092 | if (tty) { |
| 1093 | process.stdout.clearLine(0) |
| 1094 | process.stdout.cursorTo(0) |
| 1095 | } |
| 1096 | } |
| 1097 | |
| 1098 | export function onRollupLog( |
| 1099 | level: LogLevel, |
no outgoing calls
no test coverage detected