@@ -77,16 +77,6 @@ export class Consola {
77
77
) ;
78
78
}
79
79
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
-
90
80
prompt < T extends PromptOptions > ( message : string , opts ?: T ) {
91
81
if ( ! this . options . prompt ) {
92
82
throw new Error ( "prompt is not supported!" ) ;
@@ -175,11 +165,11 @@ export class Consola {
175
165
}
176
166
177
167
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" ) ;
180
170
}
181
171
182
- _wrapStream ( stream : NodeJS . WritableStream , type : string ) {
172
+ _wrapStream ( stream : NodeJS . WriteStream | undefined , type : string ) {
183
173
if ( ! stream ) {
184
174
return ;
185
175
}
@@ -196,11 +186,11 @@ export class Consola {
196
186
}
197
187
198
188
restoreStd ( ) {
199
- this . _restoreStream ( this . stdout ) ;
200
- this . _restoreStream ( this . stderr ) ;
189
+ this . _restoreStream ( this . options . stdout ) ;
190
+ this . _restoreStream ( this . options . stderr ) ;
201
191
}
202
192
203
- _restoreStream ( stream : NodeJS . WritableStream ) {
193
+ _restoreStream ( stream ? : NodeJS . WriteStream ) {
204
194
if ( ! stream ) {
205
195
return ;
206
196
}
0 commit comments