Skip to content

Commit

Permalink
chore(release): 0.1.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-cli-bot committed May 22, 2024
1 parent b95f399 commit 6c18cc1
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 116 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# 0.1.0 (2024-05-22)


### Features

* initial commit ([b95f399](https://github.com/oclif/plugin-test-core-v3/commit/b95f3997b5c9ad0b1512bbb74ffa75078c96e33e))



145 changes: 31 additions & 114 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $ npm install -g @oclif/plugin-test-core-v3
$ corev3 COMMAND
running command...
$ corev3 (--version)
@oclif/plugin-test-core-v3/0.0.0 darwin-arm64 node-v20.13.1
@oclif/plugin-test-core-v3/0.1.0 linux-x64 node-v18.20.2
$ corev3 --help [COMMAND]
USAGE
$ corev3 COMMAND
Expand All @@ -29,20 +29,36 @@ USAGE
<!-- usagestop -->
# Commands
<!-- commands -->
* [`corev3 core-v3 [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG]`](#corev3-core-v3-optionalarg-defaultarg-defaultfnarg)
* [`corev3 hello PERSON`](#corev3-hello-person)
* [`corev3 hello world`](#corev3-hello-world)
* [`corev3 help [COMMAND]`](#corev3-help-command)
* [`corev3 plugins`](#corev3-plugins)
* [`corev3 plugins add PLUGIN`](#corev3-plugins-add-plugin)
* [`corev3 plugins:inspect PLUGIN...`](#corev3-pluginsinspect-plugin)
* [`corev3 plugins install PLUGIN`](#corev3-plugins-install-plugin)
* [`corev3 plugins link PATH`](#corev3-plugins-link-path)
* [`corev3 plugins remove [PLUGIN]`](#corev3-plugins-remove-plugin)
* [`corev3 plugins reset`](#corev3-plugins-reset)
* [`corev3 plugins uninstall [PLUGIN]`](#corev3-plugins-uninstall-plugin)
* [`corev3 plugins unlink [PLUGIN]`](#corev3-plugins-unlink-plugin)
* [`corev3 plugins update`](#corev3-plugins-update)

## `corev3 core-v3 [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG]`

```
USAGE
$ corev3 core-v3 [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG] [--json] [--optionalString <value>]
[--defaultString <value>] [--defaultFnString <value>]
FLAGS
--defaultFnString=<value> [default: async fn default]
--defaultString=<value> [default: simple string default]
--optionalString=<value>
GLOBAL FLAGS
--json Format output as json.
```

_See code: [src/commands/core-v3.ts](https://github.com/oclif/plugin-test-core-v3/blob/0.1.0/src/commands/core-v3.ts)_

## `corev3 hello PERSON`

Say hello
Expand All @@ -65,7 +81,7 @@ EXAMPLES
hello friend from oclif! (./src/commands/hello/index.ts)
```

_See code: [src/commands/hello/index.ts](https://github.com/oclif/plugin-test-core-v3/blob/v0.0.0/src/commands/hello/index.ts)_
_See code: [src/commands/hello/index.ts](https://github.com/oclif/plugin-test-core-v3/blob/0.1.0/src/commands/hello/index.ts)_

## `corev3 hello world`

Expand All @@ -83,7 +99,7 @@ EXAMPLES
hello world! (./src/commands/hello/world.ts)
```

_See code: [src/commands/hello/world.ts](https://github.com/oclif/plugin-test-core-v3/blob/v0.0.0/src/commands/hello/world.ts)_
_See code: [src/commands/hello/world.ts](https://github.com/oclif/plugin-test-core-v3/blob/0.1.0/src/commands/hello/world.ts)_

## `corev3 help [COMMAND]`

Expand All @@ -103,7 +119,7 @@ DESCRIPTION
Display help for corev3.
```

_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.0.22/src/commands/help.ts)_
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.0.22/src/commands/help.ts)_

## `corev3 plugins`

Expand All @@ -126,54 +142,7 @@ EXAMPLES
$ corev3 plugins
```

_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.2/src/commands/plugins/index.ts)_

## `corev3 plugins add PLUGIN`

Installs a plugin into corev3.

```
USAGE
$ corev3 plugins add PLUGIN... [--json] [-f] [-h] [-s | -v]
ARGUMENTS
PLUGIN... Plugin to install.
FLAGS
-f, --force Force npm to fetch remote resources even if a local copy exists on disk.
-h, --help Show CLI help.
-s, --silent Silences npm output.
-v, --verbose Show verbose npm output.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Installs a plugin into corev3.
Uses bundled npm executable to install plugins into /Users/mdonnalley/.local/share/corev3
Installation of a user-installed plugin will override a core plugin.
Use the COREV3_NPM_LOG_LEVEL environment variable to set the npm loglevel.
Use the COREV3_NPM_REGISTRY environment variable to set the npm registry.
ALIASES
$ corev3 plugins add
EXAMPLES
Install a plugin from npm registry.
$ corev3 plugins add myplugin
Install a plugin from a github url.
$ corev3 plugins add https://github.com/someuser/someplugin
Install a plugin from a github slug.
$ corev3 plugins add someuser/someplugin
```
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.1.2/src/commands/plugins/index.ts)_

## `corev3 plugins:inspect PLUGIN...`

Expand All @@ -200,7 +169,7 @@ EXAMPLES
$ corev3 plugins inspect myplugin
```

_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.2/src/commands/plugins/inspect.ts)_
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.1.2/src/commands/plugins/inspect.ts)_

## `corev3 plugins install PLUGIN`

Expand All @@ -225,7 +194,7 @@ GLOBAL FLAGS
DESCRIPTION
Installs a plugin into corev3.
Uses bundled npm executable to install plugins into /Users/mdonnalley/.local/share/corev3
Uses bundled npm executable to install plugins into /home/runner/.local/share/corev3
Installation of a user-installed plugin will override a core plugin.
Expand All @@ -249,7 +218,7 @@ EXAMPLES
$ corev3 plugins install someuser/someplugin
```

_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.2/src/commands/plugins/install.ts)_
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.1.2/src/commands/plugins/install.ts)_

## `corev3 plugins link PATH`

Expand Down Expand Up @@ -279,33 +248,7 @@ EXAMPLES
$ corev3 plugins link myplugin
```

_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.2/src/commands/plugins/link.ts)_

## `corev3 plugins remove [PLUGIN]`

Removes a plugin from the CLI.

```
USAGE
$ corev3 plugins remove [PLUGIN...] [-h] [-v]
ARGUMENTS
PLUGIN... plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ corev3 plugins unlink
$ corev3 plugins remove
EXAMPLES
$ corev3 plugins remove myplugin
```
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.1.2/src/commands/plugins/link.ts)_

## `corev3 plugins reset`

Expand All @@ -320,7 +263,7 @@ FLAGS
--reinstall Reinstall all plugins after uninstalling.
```

_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.2/src/commands/plugins/reset.ts)_
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.1.2/src/commands/plugins/reset.ts)_

## `corev3 plugins uninstall [PLUGIN]`

Expand Down Expand Up @@ -348,33 +291,7 @@ EXAMPLES
$ corev3 plugins uninstall myplugin
```

_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.2/src/commands/plugins/uninstall.ts)_

## `corev3 plugins unlink [PLUGIN]`

Removes a plugin from the CLI.

```
USAGE
$ corev3 plugins unlink [PLUGIN...] [-h] [-v]
ARGUMENTS
PLUGIN... plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ corev3 plugins unlink
$ corev3 plugins remove
EXAMPLES
$ corev3 plugins unlink myplugin
```
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.1.2/src/commands/plugins/uninstall.ts)_

## `corev3 plugins update`

Expand All @@ -392,5 +309,5 @@ DESCRIPTION
Update installed plugins.
```

_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.2/src/commands/plugins/update.ts)_
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.1.2/src/commands/plugins/update.ts)_
<!-- commandsstop -->
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@oclif/plugin-test-core-v3",
"description": "Test plugin that uses @oclif/core v3",
"version": "0.0.0",
"version": "0.1.0",
"author": "Salesforce",
"bin": {
"corev3": "./bin/run.js"
Expand Down Expand Up @@ -43,7 +43,6 @@
],
"license": "MIT",
"main": "dist/index.js",

"oclif": {
"bin": "corev3",
"dirname": "corev3",
Expand Down

0 comments on commit 6c18cc1

Please sign in to comment.