Skip to content

Commit

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


Expand Down
151 changes: 26 additions & 125 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-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
Expand All @@ -27,58 +27,29 @@ USAGE
<!-- usagestop -->
# Commands
<!-- 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 <value>
ARGUMENTS
PERSON Person to say hello to
$ cjs2 cjs2 [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG] [--optionalString <value>] [--defaultString
<value>] [--defaultFnString <value>]
FLAGS
-f, --from=<value> (required) Who is saying hello
DESCRIPTION
Say hello
EXAMPLES
$ oex hello friend --from oclif
hello friend from oclif! (./src/commands/hello/index.ts)
--defaultFnString=<value> [default: async fn default]
--defaultString=<value> [default: simple string default]
--optionalString=<value>
```

_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]`

Expand All @@ -98,65 +69,30 @@ 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`

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.
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...`

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

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

Expand All @@ -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)_
<!-- 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-cjs-2",
"version": "0.6.29",
"version": "0.6.30",
"description": "Test CJS plugin",
"author": "Salesforce",
"bin": {
Expand Down

0 comments on commit 00a7a88

Please sign in to comment.