From 748e855d3a2a031139a0ee034273cb1d8ac45fc2 Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Thu, 2 May 2024 08:44:57 +0000 Subject: [PATCH] chore(release): 0.2.12 [skip ci] --- CHANGELOG.md | 9 +++ README.md | 153 +++++++-------------------------------------------- package.json | 2 +- 3 files changed, 31 insertions(+), 133 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a0ec21..12d4221 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [0.2.12](https://github.com/oclif/plugin-test-core-v1/compare/0.2.11...0.2.12) (2024-05-02) + + +### Bug Fixes + +* **deps:** bump ejs from 3.1.9 to 3.1.10 ([#52](https://github.com/oclif/plugin-test-core-v1/issues/52)) ([aae0ce0](https://github.com/oclif/plugin-test-core-v1/commit/aae0ce09dc48a8e1e9ca17a3b4c210fa8fc5d5e6)) + + + ## [0.2.11](https://github.com/oclif/plugin-test-core-v1/compare/0.2.10...0.2.11) (2024-04-11) diff --git a/README.md b/README.md index 22513ef..68f10a6 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ $ npm install -g @oclif/plugin-test-core-v1 $ corev1 COMMAND running command... $ corev1 (--version) -@oclif/plugin-test-core-v1/0.0.0 darwin-arm64 node-v18.15.0 +@oclif/plugin-test-core-v1/0.2.12 linux-x64 node-v18.20.2 $ corev1 --help [COMMAND] USAGE $ corev1 COMMAND @@ -27,60 +27,32 @@ USAGE # Commands -* [`corev1 hello PERSON`](#corev1-hello-person) -* [`corev1 hello world`](#corev1-hello-world) +* [`corev1 core-v1 [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG]`](#corev1-core-v1-optionalarg-defaultarg-defaultfnarg) * [`corev1 help [COMMANDS]`](#corev1-help-commands) * [`corev1 plugins`](#corev1-plugins) -* [`corev1 plugins:install PLUGIN...`](#corev1-pluginsinstall-plugin) * [`corev1 plugins:inspect PLUGIN...`](#corev1-pluginsinspect-plugin) -* [`corev1 plugins:install PLUGIN...`](#corev1-pluginsinstall-plugin-1) +* [`corev1 plugins:install PLUGIN...`](#corev1-pluginsinstall-plugin) * [`corev1 plugins:link PLUGIN`](#corev1-pluginslink-plugin) * [`corev1 plugins:uninstall PLUGIN...`](#corev1-pluginsuninstall-plugin) -* [`corev1 plugins:uninstall PLUGIN...`](#corev1-pluginsuninstall-plugin-1) -* [`corev1 plugins:uninstall PLUGIN...`](#corev1-pluginsuninstall-plugin-2) * [`corev1 plugins update`](#corev1-plugins-update) -## `corev1 hello PERSON` - -Say hello +## `corev1 core-v1 [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG]` ``` USAGE - $ corev1 hello PERSON -f - -ARGUMENTS - PERSON Person to say hello to + $ corev1 core-v1 [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG] [--optionalString ] [--defaultString + ] [--defaultFnString ] [--json] FLAGS - -f, --from= (required) Who is saying hello - -DESCRIPTION - Say hello + --defaultFnString= [default: async fn default] + --defaultString= [default: simple string default] + --optionalString= -EXAMPLES - $ oex hello friend --from oclif - hello friend from oclif! (./src/commands/hello/index.ts) -``` - -_See code: [dist/commands/hello/index.ts](https://github.com/oclif/plugin-test-core-v1/blob/v0.0.0/dist/commands/hello/index.ts)_ - -## `corev1 hello world` - -Say hello world - -``` -USAGE - $ corev1 hello world - -DESCRIPTION - Say hello world - -EXAMPLES - $ corev1 hello world - hello world! (./src/commands/hello/world.ts) +GLOBAL FLAGS + --json Format output as json. ``` -_See code: [dist/commands/hello/world.ts](https://github.com/oclif/plugin-test-core-v1/blob/v0.0.0/dist/commands/hello/world.ts)_ +_See code: [src/commands/core-v1.ts](https://github.com/oclif/plugin-test-core-v1/blob/0.2.12/src/commands/core-v1.ts)_ ## `corev1 help [COMMANDS]` @@ -100,7 +72,7 @@ DESCRIPTION Display help for corev1. ``` -_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.2.19/src/commands/help.ts)_ +_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/5.2.20/src/commands/help.ts)_ ## `corev1 plugins` @@ -123,45 +95,7 @@ EXAMPLES $ corev1 plugins ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.7.0/src/commands/plugins/index.ts)_ - -## `corev1 plugins:install PLUGIN...` - -Installs a plugin into the CLI. - -``` -USAGE - $ corev1 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 - $ corev1 plugins add - -EXAMPLES - $ corev1 plugins:install myplugin - - $ corev1 plugins:install https://github.com/someuser/someplugin - - $ corev1 plugins:install someuser/someplugin -``` +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/3.9.4/src/commands/plugins/index.ts)_ ## `corev1 plugins:inspect PLUGIN...` @@ -188,7 +122,7 @@ EXAMPLES $ corev1 plugins:inspect myplugin ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.7.0/src/commands/plugins/inspect.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/3.9.4/src/commands/plugins/inspect.ts)_ ## `corev1 plugins:install PLUGIN...` @@ -228,7 +162,7 @@ EXAMPLES $ corev1 plugins:install someuser/someplugin ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.7.0/src/commands/plugins/install.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/3.9.4/src/commands/plugins/install.ts)_ ## `corev1 plugins:link PLUGIN` @@ -242,8 +176,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. @@ -257,7 +192,7 @@ EXAMPLES $ corev1 plugins:link myplugin ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.7.0/src/commands/plugins/link.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/3.9.4/src/commands/plugins/link.ts)_ ## `corev1 plugins:uninstall PLUGIN...` @@ -282,53 +217,7 @@ ALIASES $ corev1 plugins remove ``` -## `corev1 plugins:uninstall PLUGIN...` - -Removes a plugin from the CLI. - -``` -USAGE - $ corev1 plugins:uninstall PLUGIN... - -ARGUMENTS - PLUGIN plugin to uninstall - -FLAGS - -h, --help Show CLI help. - -v, --verbose - -DESCRIPTION - Removes a plugin from the CLI. - -ALIASES - $ corev1 plugins unlink - $ corev1 plugins remove -``` - -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.7.0/src/commands/plugins/uninstall.ts)_ - -## `corev1 plugins:uninstall PLUGIN...` - -Removes a plugin from the CLI. - -``` -USAGE - $ corev1 plugins:uninstall PLUGIN... - -ARGUMENTS - PLUGIN plugin to uninstall - -FLAGS - -h, --help Show CLI help. - -v, --verbose - -DESCRIPTION - Removes a plugin from the CLI. - -ALIASES - $ corev1 plugins unlink - $ corev1 plugins remove -``` +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/3.9.4/src/commands/plugins/uninstall.ts)_ ## `corev1 plugins update` @@ -346,5 +235,5 @@ DESCRIPTION Update installed plugins. ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.7.0/src/commands/plugins/update.ts)_ +_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 d12b59e..0b4fdb1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@oclif/plugin-test-core-v1", - "version": "0.2.11", + "version": "0.2.12", "description": "Test plugin that uses @oclif/core v1", "author": "Salesforce", "bin": {