Skip to content

Commit 3879df7

Browse files
committed
chore: really exposing my testing experiments
1 parent 9ff960d commit 3879df7

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/lib/commands/read-stdin.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,9 @@ export async function readStdin(stdinStream: typeof process.stdin = process.stdi
1515
// synchronous and the stdout steam is empty.
1616
// See https://nodejs.org/docs/latest-v12.x/api/process.html#process_a_note_on_process_i_o
1717
if (stdinStream.isTTY || (stdinStream.readableEnded && !pipedIn)) {
18-
console.error('really', { isTTY: stdinStream.isTTY, readableEnded: stdinStream.readableEnded, pipedIn });
1918
return;
2019
}
2120

22-
console.log('not really', { isTTY: stdinStream.isTTY, readableEnded: stdinStream.readableEnded, pipedIn });
23-
2421
// This is required for some reason when piping from a previous oclif run
2522
stdinStream.resume();
2623

0 commit comments

Comments
 (0)