diff --git a/CHANGELOG.md b/CHANGELOG.md index 613d8df7..2c50409f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# Changelog + +All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +### [2.0.2](https://github.com/oclif/plugin-commands/compare/v2.0.0...v2.0.2) (2022-01-03) + + +### Bug Fixes + +* add summary and use configured command ([#217](https://github.com/oclif/plugin-commands/issues/217)) ([d1ce99e](https://github.com/oclif/plugin-commands/commit/d1ce99eb233155e019a585177972188953b0ffaf)) +* build error ([6cc7807](https://github.com/oclif/plugin-commands/commit/6cc780725e5dbb64fbc105206cc580bf45325749)) +* bump deps ([#234](https://github.com/oclif/plugin-commands/issues/234)) ([04c903d](https://github.com/oclif/plugin-commands/commit/04c903d45a51987f6262628c7a401481dc237145)) +* bump deps and fix tests ([#236](https://github.com/oclif/plugin-commands/issues/236)) ([064da3f](https://github.com/oclif/plugin-commands/commit/064da3f22778c9625c640012b883eee8c1528ab1)) +* bump-deps ([#235](https://github.com/oclif/plugin-commands/issues/235)) ([55b3e59](https://github.com/oclif/plugin-commands/commit/55b3e59e0743078d2bf81bfa75a56ebd0b746c4b)) +* use enableJsonFlag to enable json output ([#253](https://github.com/oclif/plugin-commands/issues/253)) ([5c839bc](https://github.com/oclif/plugin-commands/commit/5c839bc3d5b079c3080858ca4bc704283ff9d345)) + ## [1.2.2](https://github.com/oclif/plugin-commands/compare/v1.2.1...v1.2.2) (2018-10-13) diff --git a/README.md b/README.md index c16b9389..b608ca47 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ $ npm install -g @oclif/plugin-commands $ oclif-example COMMAND running command... $ oclif-example (--version) -@oclif/plugin-commands/2.0.0 darwin-x64 node-v12.22.6 +@oclif/plugin-commands/2.0.2 linux-x64 node-v12.22.8 $ oclif-example --help [COMMAND] USAGE $ oclif-example COMMAND @@ -29,10 +29,7 @@ USAGE # Commands -- [@oclif/plugin-commands](#oclifplugin-commands) -- [Usage](#usage) -- [Commands](#commands) - - [`oclif-example commands`](#oclif-example-commands) +* [`oclif-example commands`](#oclif-example-commands) ## `oclif-example commands` @@ -40,12 +37,11 @@ list all the commands ``` USAGE - $ oclif-example commands [-h] [-j] [--hidden] [--columns | -x] [--sort ] [--filter ] - [--output csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ] + $ oclif-example commands [--json] [-h] [--hidden] [--columns | -x] [--sort ] [--filter + ] [--output csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ] FLAGS - -h, --help show CLI help - -j, --json display unfiltered api data in json format + -h, --help Show CLI help. -x, --extended show extra columns --columns= only show provided columns (comma-separated) --csv output is csv format [alias: --output=csv] @@ -57,9 +53,12 @@ FLAGS --sort= property to sort by (prepend '-' for descending) +GLOBAL FLAGS + --json Format output as json. + DESCRIPTION list all the commands ``` -_See code: [src/commands/commands.ts](https://github.com/oclif/plugin-commands/blob/v2.0.0/src/commands/commands.ts)_ +_See code: [src/commands/commands.ts](https://github.com/oclif/plugin-commands/blob/v2.0.2/src/commands/commands.ts)_