chore: dim watch separator (#20836)
This commit is contained in:
parent
de69b766d9
commit
e9ca483666
|
|
@ -420,7 +420,7 @@ export function separator(text: string = ''): string {
|
||||||
if (text)
|
if (text)
|
||||||
text += ' ';
|
text += ' ';
|
||||||
const columns = Math.min(100, process.stdout?.columns || 100);
|
const columns = Math.min(100, process.stdout?.columns || 100);
|
||||||
return text + colors.gray('─'.repeat(Math.max(0, columns - text.length)));
|
return text + colors.dim('─'.repeat(Math.max(0, columns - text.length)));
|
||||||
}
|
}
|
||||||
|
|
||||||
function indent(lines: string, tab: string) {
|
function indent(lines: string, tab: string) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue