Skip to content

Commit

Permalink
chore(release): 0.2.12 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-cli-bot committed May 2, 2024
1 parent aae0ce0 commit 748e855
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 133 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
153 changes: 21 additions & 132 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -27,60 +27,32 @@ USAGE
<!-- usagestop -->
# Commands
<!-- 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 <value>
ARGUMENTS
PERSON Person to say hello to
$ corev1 core-v1 [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG] [--optionalString <value>] [--defaultString
<value>] [--defaultFnString <value>] [--json]
FLAGS
-f, --from=<value> (required) Who is saying hello
DESCRIPTION
Say hello
--defaultFnString=<value> [default: async fn default]
--defaultString=<value> [default: simple string default]
--optionalString=<value>
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]`

Expand All @@ -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`

Expand All @@ -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...`

Expand All @@ -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...`

Expand Down Expand Up @@ -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`

Expand All @@ -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.
Expand All @@ -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...`

Expand All @@ -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`

Expand All @@ -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)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down

0 comments on commit 748e855

Please sign in to comment.