Comparing version 6.0.1 to 6.0.2
@@ -5,2 +5,9 @@ # Changelog | ||
### [6.0.2](https://github.com/oclif/cli-ux/compare/v6.0.1...v6.0.2) (2021-12-01) | ||
### Bug Fixes | ||
* module load workaround ([#460](https://github.com/oclif/cli-ux/issues/460)) ([c8407c3](https://github.com/oclif/cli-ux/commit/c8407c350530cd9ff0592db8cb2661ff415ac8f1)) | ||
### [6.0.1](https://github.com/oclif/cli-ux/compare/v6.0.0...v6.0.1) (2021-12-01) | ||
@@ -7,0 +14,0 @@ |
@@ -1,2 +0,2 @@ | ||
import { Interfaces } from '@oclif/core'; | ||
import * as Interfaces from '@oclif/core/lib/interfaces'; | ||
export declare function table<T extends Record<string, unknown>>(data: T[], columns: table.Columns<T>, options?: table.Options): void; | ||
@@ -3,0 +3,0 @@ export declare namespace table { |
@@ -5,3 +5,3 @@ "use strict"; | ||
const tslib_1 = require("tslib"); | ||
const core_1 = require("@oclif/core"); | ||
const F = (0, tslib_1.__importStar)(require("@oclif/core/lib/flags")); | ||
const screen_1 = require("@oclif/screen"); | ||
@@ -284,7 +284,7 @@ const chalk_1 = (0, tslib_1.__importDefault)(require("chalk")); | ||
table.Flags = { | ||
columns: core_1.Flags.string({ exclusive: ['extended'], description: 'only show provided columns (comma-separated)' }), | ||
sort: core_1.Flags.string({ description: 'property to sort by (prepend \'-\' for descending)' }), | ||
filter: core_1.Flags.string({ description: 'filter property by partial string matching, ex: name=foo' }), | ||
csv: core_1.Flags.boolean({ exclusive: ['no-truncate'], description: 'output is csv format [alias: --output=csv]' }), | ||
output: core_1.Flags.string({ | ||
columns: F.string({ exclusive: ['extended'], description: 'only show provided columns (comma-separated)' }), | ||
sort: F.string({ description: 'property to sort by (prepend \'-\' for descending)' }), | ||
filter: F.string({ description: 'filter property by partial string matching, ex: name=foo' }), | ||
csv: F.boolean({ exclusive: ['no-truncate'], description: 'output is csv format [alias: --output=csv]' }), | ||
output: F.string({ | ||
exclusive: ['no-truncate', 'csv'], | ||
@@ -294,5 +294,5 @@ description: 'output in a more machine friendly format', | ||
}), | ||
extended: core_1.Flags.boolean({ exclusive: ['columns'], char: 'x', description: 'show extra columns' }), | ||
'no-truncate': core_1.Flags.boolean({ exclusive: ['csv'], description: 'do not truncate output to fit screen' }), | ||
'no-header': core_1.Flags.boolean({ exclusive: ['csv'], description: 'hide table header from output' }), | ||
extended: F.boolean({ exclusive: ['columns'], char: 'x', description: 'show extra columns' }), | ||
'no-truncate': F.boolean({ exclusive: ['csv'], description: 'do not truncate output to fit screen' }), | ||
'no-header': F.boolean({ exclusive: ['csv'], description: 'hide table header from output' }), | ||
}; | ||
@@ -299,0 +299,0 @@ // eslint-disable-next-line no-inner-declarations |
{ | ||
"name": "cli-ux", | ||
"description": "cli IO utilities", | ||
"version": "6.0.1", | ||
"version": "6.0.2", | ||
"author": "Jeff Dickey @jdxcode", | ||
"bugs": "https://github.com/oclif/cli-ux/issues", | ||
"dependencies": { | ||
"@oclif/core": "^1.0.4", | ||
"@oclif/core": "^1.0.5", | ||
"@oclif/linewrap": "^1.0.0", | ||
@@ -16,3 +16,3 @@ "@oclif/screen": "^1.0.3", | ||
"clean-stack": "^3.0.0", | ||
"cli-progress": "^3.4.0", | ||
"cli-progress": "^3.9.1", | ||
"extract-stack": "^2.0.0", | ||
@@ -55,4 +55,4 @@ "fs-extra": "^8.1", | ||
"eslint-config-oclif-typescript": "^1.0.2", | ||
"fancy-test": "^1.4.1", | ||
"mocha": "^8.2.1", | ||
"fancy-test": "^1.4.10", | ||
"mocha": "^9.1.3", | ||
"ts-node": "^9.0.0", | ||
@@ -59,0 +59,0 @@ "typescript": "4.4.3" |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
98926
Updated@oclif/core@^1.0.5
Updatedcli-progress@^3.9.1