fix(core): clear line escape code shouldn't erase prefix in output (#15674)

This commit is contained in:
Craigory Coppola 2023-03-14 22:34:43 -04:00 committed by GitHub
parent cd3d316af4
commit 72d64b66b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,6 +20,7 @@ import {
} from './batch/batch-messages';
import { stripIndents } from '../utils/strip-indents';
import { Task } from '../config/task-graph';
import { Transform } from 'stream';
const workerPath = join(__dirname, './batch/run-batch.js');
@ -152,9 +153,13 @@ export class ForkedProcessTaskRunner {
const prefixText = `${task.target.project}:`;
p.stdout
.pipe(
logClearLineToPrefixTransformer(color.bold(prefixText) + ' ')
)
.pipe(logTransformer({ tag: color.bold(prefixText) }))
.pipe(process.stdout);
p.stderr
.pipe(logClearLineToPrefixTransformer(color(prefixText) + ' '))
.pipe(logTransformer({ tag: color(prefixText) }))
.pipe(process.stderr);
} else {
@ -493,3 +498,20 @@ function getColor(projectName: string) {
return colors[colorIndex];
}
/**
* Prevents terminal escape sequence from clearing line prefix.
*/
function logClearLineToPrefixTransformer(prefix) {
let prevChunk = null;
return new Transform({
transform(chunk, _encoding, callback) {
if (prevChunk && prevChunk.toString() === '\x1b[2K') {
chunk = chunk.toString().replace(/\x1b\[1G/g, (m) => m + prefix);
}
this.push(chunk);
prevChunk = chunk;
callback();
},
});
}