@oclif/table 0.1.16 → 0.1.17

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.
Files changed (2) hide show
  1. package/lib/table.js +1 -1
  2. 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 WriteStream(fd);
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) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@oclif/table",
3
3
  "description": "Display table in terminal",
4
- "version": "0.1.16",
4
+ "version": "0.1.17",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/table/issues",
7
7
  "dependencies": {