From 00a7a88b210cfd699d0fb609c13d2dca1267955c Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Sat, 13 Apr 2024 05:46:25 +0000 Subject: [PATCH] chore(release): 0.6.30 [skip ci] --- CHANGELOG.md | 9 +++ README.md | 151 +++++++++------------------------------------------ package.json | 2 +- 3 files changed, 36 insertions(+), 126 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1013f0e..b0456f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [0.6.30](https://github.com/oclif/plugin-test-cjs-2/compare/0.6.29...0.6.30) (2024-04-13) + + +### Bug Fixes + +* **deps:** bump @oclif/core from 3.26.0 to 3.26.2 ([#108](https://github.com/oclif/plugin-test-cjs-2/issues/108)) ([0b63e06](https://github.com/oclif/plugin-test-cjs-2/commit/0b63e06d66a4de44137e51e15acad7af16dc6da7)) + + + ## [0.6.29](https://github.com/oclif/plugin-test-cjs-2/compare/0.6.28...0.6.29) (2024-04-11) diff --git a/README.md b/README.md index 427caba..c74c6aa 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ $ npm install -g @oclif/plugin-test-cjs-2 $ cjs2 COMMAND running command... $ cjs2 (--version) -@oclif/plugin-test-cjs-2/0.0.0 darwin-arm64 node-v18.7.0 +@oclif/plugin-test-cjs-2/0.6.30 linux-x64 node-v18.20.1 $ cjs2 --help [COMMAND] USAGE $ cjs2 COMMAND @@ -27,58 +27,29 @@ USAGE # Commands -* [`cjs2 hello PERSON`](#cjs2-hello-person) -* [`cjs2 hello world`](#cjs2-hello-world) +* [`cjs2 cjs2 [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG]`](#cjs2-cjs2-optionalarg-defaultarg-defaultfnarg) * [`cjs2 help [COMMANDS]`](#cjs2-help-commands) * [`cjs2 plugins`](#cjs2-plugins) -* [`cjs2 plugins:install PLUGIN...`](#cjs2-pluginsinstall-plugin) * [`cjs2 plugins:inspect PLUGIN...`](#cjs2-pluginsinspect-plugin) -* [`cjs2 plugins:install PLUGIN...`](#cjs2-pluginsinstall-plugin-1) +* [`cjs2 plugins:install PLUGIN...`](#cjs2-pluginsinstall-plugin) * [`cjs2 plugins:link PLUGIN`](#cjs2-pluginslink-plugin) * [`cjs2 plugins:uninstall PLUGIN...`](#cjs2-pluginsuninstall-plugin) -* [`cjs2 plugins:uninstall PLUGIN...`](#cjs2-pluginsuninstall-plugin-1) -* [`cjs2 plugins:uninstall PLUGIN...`](#cjs2-pluginsuninstall-plugin-2) * [`cjs2 plugins update`](#cjs2-plugins-update) -## `cjs2 hello PERSON` - -Say hello +## `cjs2 cjs2 [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG]` ``` USAGE - $ cjs2 hello PERSON -f - -ARGUMENTS - PERSON Person to say hello to + $ cjs2 cjs2 [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG] [--optionalString ] [--defaultString + ] [--defaultFnString ] FLAGS - -f, --from= (required) Who is saying hello - -DESCRIPTION - Say hello - -EXAMPLES - $ oex hello friend --from oclif - hello friend from oclif! (./src/commands/hello/index.ts) + --defaultFnString= [default: async fn default] + --defaultString= [default: simple string default] + --optionalString= ``` -_See code: [dist/commands/hello/index.ts](https://github.com/oclif/plugin-test-cjs-2/blob/v0.0.0/dist/commands/hello/index.ts)_ - -## `cjs2 hello world` - -Say hello world - -``` -USAGE - $ cjs2 hello world - -DESCRIPTION - Say hello world - -EXAMPLES - $ cjs2 hello world - hello world! (./src/commands/hello/world.ts) -``` +_See code: [src/commands/cjs2.ts](https://github.com/oclif/plugin-test-cjs-2/blob/0.6.30/src/commands/cjs2.ts)_ ## `cjs2 help [COMMANDS]` @@ -98,7 +69,7 @@ DESCRIPTION Display help for cjs2. ``` -_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.2.14/src/commands/help.ts)_ +_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/5.2.20/src/commands/help.ts)_ ## `cjs2 plugins` @@ -106,11 +77,14 @@ List installed plugins. ``` USAGE - $ cjs2 plugins [--core] + $ cjs2 plugins [--json] [--core] FLAGS --core Show core plugins. +GLOBAL FLAGS + --json Format output as json. + DESCRIPTION List installed plugins. @@ -118,45 +92,7 @@ EXAMPLES $ cjs2 plugins ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.4.7/src/commands/plugins/index.ts)_ - -## `cjs2 plugins:install PLUGIN...` - -Installs a plugin into the CLI. - -``` -USAGE - $ cjs2 plugins:install PLUGIN... - -ARGUMENTS - PLUGIN Plugin to install. - -FLAGS - -f, --force Run yarn install with force flag. - -h, --help Show CLI help. - -v, --verbose - -DESCRIPTION - Installs a plugin into the CLI. - Can be installed from npm or a git url. - - Installation of a user-installed plugin will override a core plugin. - - e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command - will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in - the CLI without the need to patch and update the whole CLI. - - -ALIASES - $ cjs2 plugins add - -EXAMPLES - $ cjs2 plugins:install myplugin - - $ cjs2 plugins:install https://github.com/someuser/someplugin - - $ cjs2 plugins:install someuser/someplugin -``` +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/3.9.4/src/commands/plugins/index.ts)_ ## `cjs2 plugins:inspect PLUGIN...` @@ -183,6 +119,8 @@ EXAMPLES $ cjs2 plugins:inspect myplugin ``` +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/3.9.4/src/commands/plugins/inspect.ts)_ + ## `cjs2 plugins:install PLUGIN...` Installs a plugin into the CLI. @@ -221,6 +159,8 @@ EXAMPLES $ cjs2 plugins:install someuser/someplugin ``` +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/3.9.4/src/commands/plugins/install.ts)_ + ## `cjs2 plugins:link PLUGIN` Links a plugin into the CLI for development. @@ -233,8 +173,9 @@ ARGUMENTS PATH [default: .] path to plugin FLAGS - -h, --help Show CLI help. + -h, --help Show CLI help. -v, --verbose + --[no-]install Install dependencies after linking the plugin. DESCRIPTION Links a plugin into the CLI for development. @@ -248,28 +189,7 @@ EXAMPLES $ cjs2 plugins:link myplugin ``` -## `cjs2 plugins:uninstall PLUGIN...` - -Removes a plugin from the CLI. - -``` -USAGE - $ cjs2 plugins:uninstall PLUGIN... - -ARGUMENTS - PLUGIN plugin to uninstall - -FLAGS - -h, --help Show CLI help. - -v, --verbose - -DESCRIPTION - Removes a plugin from the CLI. - -ALIASES - $ cjs2 plugins unlink - $ cjs2 plugins remove -``` +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/3.9.4/src/commands/plugins/link.ts)_ ## `cjs2 plugins:uninstall PLUGIN...` @@ -294,28 +214,7 @@ ALIASES $ cjs2 plugins remove ``` -## `cjs2 plugins:uninstall PLUGIN...` - -Removes a plugin from the CLI. - -``` -USAGE - $ cjs2 plugins:uninstall PLUGIN... - -ARGUMENTS - PLUGIN plugin to uninstall - -FLAGS - -h, --help Show CLI help. - -v, --verbose - -DESCRIPTION - Removes a plugin from the CLI. - -ALIASES - $ cjs2 plugins unlink - $ cjs2 plugins remove -``` +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/3.9.4/src/commands/plugins/uninstall.ts)_ ## `cjs2 plugins update` @@ -332,4 +231,6 @@ FLAGS DESCRIPTION Update installed plugins. ``` + +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/3.9.4/src/commands/plugins/update.ts)_ diff --git a/package.json b/package.json index da7719d..88efa26 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@oclif/plugin-test-cjs-2", - "version": "0.6.29", + "version": "0.6.30", "description": "Test CJS plugin", "author": "Salesforce", "bin": {