Skip to content

Commit

Permalink
chore(release): 0.4.13 [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 6b5e6c9 commit 5dec379
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 139 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [0.4.13](https://github.com/oclif/plugin-test-esbuild/compare/0.4.12...0.4.13) (2024-04-13)


### Bug Fixes

* **deps:** bump @oclif/plugin-test-esm-1 from 0.7.10 to 0.7.11 ([#47](https://github.com/oclif/plugin-test-esbuild/issues/47)) ([6b5e6c9](https://github.com/oclif/plugin-test-esbuild/commit/6b5e6c9c2877b732d4320d70ed0f70951c701fb1))



## [0.4.12](https://github.com/oclif/plugin-test-esbuild/compare/0.4.11...0.4.12) (2024-04-11)


Expand Down
161 changes: 23 additions & 138 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ $ npm install -g @oclif/plugin-test-esbuild
$ bundle COMMAND
running command...
$ bundle (--version)
@oclif/plugin-test-esbuild/0.2.4 darwin-arm64 node-v20.11.0
@oclif/plugin-test-esbuild/0.4.13 linux-x64 node-v18.20.1
$ bundle --help [COMMAND]
USAGE
$ bundle COMMAND
Expand All @@ -27,19 +27,16 @@ USAGE
# Commands
<!-- commands -->
* [`bundle esbuild [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG]`](#bundle-esbuild-optionalarg-defaultarg-defaultfnarg)
* [`bundle esm1 [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG]`](#bundle-esm1-optionalarg-defaultarg-defaultfnarg)
* [`bundle hello PERSON`](#bundle-hello-person)
* [`bundle hello alias`](#bundle-hello-alias)
* [`bundle hello world`](#bundle-hello-world)
* [`bundle help [COMMANDS]`](#bundle-help-commands)
* [`bundle plugins`](#bundle-plugins)
* [`bundle plugins:install PLUGIN...`](#bundle-pluginsinstall-plugin)
* [`bundle plugins:inspect PLUGIN...`](#bundle-pluginsinspect-plugin)
* [`bundle plugins:install PLUGIN...`](#bundle-pluginsinstall-plugin-1)
* [`bundle plugins:install PLUGIN...`](#bundle-pluginsinstall-plugin)
* [`bundle plugins:link PLUGIN`](#bundle-pluginslink-plugin)
* [`bundle plugins:uninstall PLUGIN...`](#bundle-pluginsuninstall-plugin)
* [`bundle plugins reset`](#bundle-plugins-reset)
* [`bundle plugins:uninstall PLUGIN...`](#bundle-pluginsuninstall-plugin-1)
* [`bundle plugins:uninstall PLUGIN...`](#bundle-pluginsuninstall-plugin-2)
* [`bundle plugins:uninstall PLUGIN...`](#bundle-pluginsuninstall-plugin)
* [`bundle plugins update`](#bundle-plugins-update)

## `bundle esbuild [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG]`
Expand All @@ -58,6 +55,22 @@ GLOBAL FLAGS
--json Format output as json.
```

## `bundle esm1 [OPTIONALARG] [DEFAULTARG] [DEFAULTFNARG]`

```
USAGE
$ bundle esm1 [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.
```

## `bundle hello PERSON`

Say hello
Expand Down Expand Up @@ -112,26 +125,6 @@ EXAMPLES
hello world! (./src/commands/hello/world.ts)
```

## `bundle help [COMMANDS]`

Display help for bundle.

```
USAGE
$ bundle help [COMMANDS] [-n]
ARGUMENTS
COMMANDS Command to show help for.
FLAGS
-n, --nested-commands Include all nested commands in the output.
DESCRIPTION
Display help for bundle.
```

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

## `bundle plugins`

List installed plugins.
Expand All @@ -153,50 +146,6 @@ EXAMPLES
$ bundle plugins
```

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

## `bundle plugins:install PLUGIN...`

Installs a plugin into the CLI.

```
USAGE
$ bundle plugins add plugins:install PLUGIN...
ARGUMENTS
PLUGIN Plugin to install.
FLAGS
-f, --force Run yarn install with force flag.
-h, --help Show CLI help.
-s, --silent Silences yarn output.
-v, --verbose Show verbose yarn output.
GLOBAL FLAGS
--json Format output as json.
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
$ bundle plugins add
EXAMPLES
$ bundle plugins add myplugin
$ bundle plugins add https://github.com/someuser/someplugin
$ bundle plugins add someuser/someplugin
```

## `bundle plugins:inspect PLUGIN...`

Displays installation properties of a plugin.
Expand All @@ -206,7 +155,7 @@ USAGE
$ bundle plugins inspect PLUGIN...
ARGUMENTS
PLUGIN [default: .] Plugin to inspect.
PLUGIN... [default: .] Plugin to inspect.
FLAGS
-h, --help Show CLI help.
Expand All @@ -222,8 +171,6 @@ EXAMPLES
$ bundle plugins inspect myplugin
```

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

## `bundle plugins:install PLUGIN...`

Installs a plugin into the CLI.
Expand All @@ -233,7 +180,7 @@ USAGE
$ bundle plugins install PLUGIN...
ARGUMENTS
PLUGIN Plugin to install.
PLUGIN... Plugin to install.
FLAGS
-f, --force Run yarn install with force flag.
Expand Down Expand Up @@ -266,8 +213,6 @@ EXAMPLES
$ bundle plugins install someuser/someplugin
```

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

## `bundle plugins:link PLUGIN`

Links a plugin into the CLI for development.
Expand Down Expand Up @@ -296,34 +241,6 @@ EXAMPLES
$ bundle plugins link myplugin
```

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

## `bundle plugins:uninstall PLUGIN...`

Removes a plugin from the CLI.

```
USAGE
$ bundle plugins remove plugins:uninstall PLUGIN...
ARGUMENTS
PLUGIN plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ bundle plugins unlink
$ bundle plugins remove
EXAMPLES
$ bundle plugins remove myplugin
```

## `bundle plugins reset`

Remove all user-installed and linked plugins.
Expand All @@ -337,8 +254,6 @@ FLAGS
--reinstall Reinstall all plugins after uninstalling.
```

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

## `bundle plugins:uninstall PLUGIN...`

Removes a plugin from the CLI.
Expand All @@ -348,7 +263,7 @@ USAGE
$ bundle plugins uninstall PLUGIN...
ARGUMENTS
PLUGIN plugin to uninstall
PLUGIN... plugin to uninstall
FLAGS
-h, --help Show CLI help.
Expand All @@ -365,34 +280,6 @@ EXAMPLES
$ bundle plugins uninstall myplugin
```

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

## `bundle plugins:uninstall PLUGIN...`

Removes a plugin from the CLI.

```
USAGE
$ bundle plugins unlink plugins:uninstall PLUGIN...
ARGUMENTS
PLUGIN plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ bundle plugins unlink
$ bundle plugins remove
EXAMPLES
$ bundle plugins unlink myplugin
```

## `bundle plugins update`

Update installed plugins.
Expand All @@ -408,6 +295,4 @@ FLAGS
DESCRIPTION
Update installed plugins.
```

_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.2.2/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-esbuild",
"version": "0.4.12",
"version": "0.4.13",
"description": "Bundled plugin for testing",
"author": "Salesforce",
"bugs": "https://github.com/oclif/plugin-test-esbuild/issues",
Expand Down

0 comments on commit 5dec379

Please sign in to comment.