Skip to content

Commit ab59db6

Browse files
committedApr 11, 2023
fix: wrap options.stdout and options.stderr for wrapStd
1 parent 167b6f3 commit ab59db6

File tree

1 file changed

+6
-16
lines changed

1 file changed

+6
-16
lines changed
 

‎src/consola.ts

+6-16
Original file line numberDiff line numberDiff line change
@@ -77,16 +77,6 @@ export class Consola {
7777
);
7878
}
7979

80-
get stdout() {
81-
// @ts-ignore
82-
return this._stdout || console._stdout; // eslint-disable-line no-console
83-
}
84-
85-
get stderr() {
86-
// @ts-ignore
87-
return this._stderr || console._stderr; // eslint-disable-line no-console
88-
}
89-
9080
prompt<T extends PromptOptions>(message: string, opts?: T) {
9181
if (!this.options.prompt) {
9282
throw new Error("prompt is not supported!");
@@ -175,11 +165,11 @@ export class Consola {
175165
}
176166

177167
wrapStd() {
178-
this._wrapStream(this.stdout, "log");
179-
this._wrapStream(this.stderr, "log");
168+
this._wrapStream(this.options.stdout, "log");
169+
this._wrapStream(this.options.stderr, "log");
180170
}
181171

182-
_wrapStream(stream: NodeJS.WritableStream, type: string) {
172+
_wrapStream(stream: NodeJS.WriteStream | undefined, type: string) {
183173
if (!stream) {
184174
return;
185175
}
@@ -196,11 +186,11 @@ export class Consola {
196186
}
197187

198188
restoreStd() {
199-
this._restoreStream(this.stdout);
200-
this._restoreStream(this.stderr);
189+
this._restoreStream(this.options.stdout);
190+
this._restoreStream(this.options.stderr);
201191
}
202192

203-
_restoreStream(stream: NodeJS.WritableStream) {
193+
_restoreStream(stream?: NodeJS.WriteStream) {
204194
if (!stream) {
205195
return;
206196
}

0 commit comments

Comments
 (0)
Please sign in to comment.