@oclif/table 0.1.16 → 0.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/table.js +1 -1
- package/package.json +1 -1
package/lib/table.js
CHANGED
|
@@ -274,7 +274,7 @@ class Stream extends WriteStream {
|
|
|
274
274
|
class Output {
|
|
275
275
|
stream;
|
|
276
276
|
constructor(fd = 1) {
|
|
277
|
-
this.stream = process.env.NODE_ENV === 'test' ? process.stdout : new
|
|
277
|
+
this.stream = process.env.NODE_ENV === 'test' ? process.stdout : new Stream(fd);
|
|
278
278
|
}
|
|
279
279
|
maybePrintLastFrame() {
|
|
280
280
|
if (this.stream instanceof Stream) {
|