build: compile dist/ [auto]

This commit is contained in:
github-actions[bot]
2026-03-23 04:05:49 +00:00
parent 7e3b1cd284
commit 30e1dfe46a
30 changed files with 137 additions and 74 deletions

View File

@@ -1,4 +1,4 @@
import { dim } from '../colors.js';
import { label } from '../colors.js';
export function renderEnvironmentLine(ctx) {
const display = ctx.config?.display;
if (display?.showConfigCounts === false) {
@@ -25,6 +25,6 @@ export function renderEnvironmentLine(ctx) {
if (parts.length === 0) {
return null;
}
return dim(parts.join(' | '));
return label(parts.join(' | '), ctx.config?.colors);
}
//# sourceMappingURL=environment.js.map