Skip to content

Commit

Permalink
chore(release): 1.0.6 [skip ci]
Browse files Browse the repository at this point in the history
<a name="1.0.6"></a>
## [1.0.6](0a0155d...v1.0.6) (2018-03-22)

### Bug Fixes

* rename example to mycli ([e018e45](e018e45))
  • Loading branch information
oclif-bot committed Mar 22, 2018
1 parent e018e45 commit 14b064a
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 22 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
<a name="1.0.6"></a>
## [1.0.6](https://github.com/oclif/plugin-plugins/compare/0a0155d9f2ac09ecde7f8ce2b15b85fae6c5cba8...v1.0.6) (2018-03-22)


### Bug Fixes

* rename example to mycli ([e018e45](https://github.com/oclif/plugin-plugins/commit/e018e45))

<a name="1.0.5"></a>
## [1.0.5](https://github.com/oclif/plugin-plugins/compare/3e1bc65d5bcd452548c440630dbe9d2194ca81bc...v1.0.5) (2018-03-22)

Expand Down
43 changes: 22 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ plugins plugin for oclif
[![License](https://img.shields.io/npm/l/@oclif/plugin-plugins.svg)](https://github.com/oclif/plugin-plugins/blob/master/package.json)

<!-- toc -->
* [What is this?](#what-is-this)
* [Usage](#usage)
* [Commands](#commands)
<!-- tocstop -->
Expand Down Expand Up @@ -50,108 +51,108 @@ Now the user can run any of the commands below to manage plugins at runtime.
<!-- commands -->
# Commands

* [oclif-example plugins](#plugins)
* [oclif-example plugins:install PLUGIN...](#pluginsinstall-plugin)
* [oclif-example plugins:uninstall PLUGIN...](#pluginsuninstall-plugin)
* [oclif-example plugins:update](#pluginsupdate)
* [mycli plugins](#plugins)
* [mycli plugins:install PLUGIN...](#pluginsinstall-plugin)
* [mycli plugins:uninstall PLUGIN...](#pluginsuninstall-plugin)
* [mycli plugins:update](#pluginsupdate)
## plugins

list installed plugins

```
USAGE
$ oclif-example plugins
$ mycli plugins
OPTIONS
--core show core plugins
EXAMPLE
$ oclif-example plugins
$ mycli plugins
```

_See code: [src/commands/plugins.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.5/src/commands/plugins.ts)_
_See code: [src/commands/plugins.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.6/src/commands/plugins.ts)_

### plugins:install PLUGIN...

installs a plugin into the CLI

```
USAGE
$ oclif-example plugins:install PLUGIN...
$ mycli plugins:install PLUGIN...
ARGUMENTS
PLUGIN plugin to install
EXAMPLE
$ oclif-example plugins:install heroku-production-status
$ mycli plugins:install heroku-production-status
```

_See code: [src/commands/plugins/install.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.5/src/commands/plugins/install.ts)_
_See code: [src/commands/plugins/install.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.6/src/commands/plugins/install.ts)_

### plugins:uninstall PLUGIN...

removes a plugin from the CLI

```
USAGE
$ oclif-example plugins:uninstall PLUGIN...
$ mycli plugins:uninstall PLUGIN...
ARGUMENTS
PLUGIN plugin to uninstall
```

_See code: [src/commands/plugins/uninstall.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.5/src/commands/plugins/uninstall.ts)_
_See code: [src/commands/plugins/uninstall.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.6/src/commands/plugins/uninstall.ts)_

### plugins:update

update installed plugins

```
USAGE
$ oclif-example plugins:update
$ mycli plugins:update
```

_See code: [src/commands/plugins/update.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.5/src/commands/plugins/update.ts)_
_See code: [src/commands/plugins/update.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.6/src/commands/plugins/update.ts)_

## plugins:install PLUGIN...

installs a plugin into the CLI

```
USAGE
$ oclif-example plugins:install PLUGIN...
$ mycli plugins:install PLUGIN...
ARGUMENTS
PLUGIN plugin to install
EXAMPLE
$ oclif-example plugins:install heroku-production-status
$ mycli plugins:install heroku-production-status
```

_See code: [src/commands/plugins/install.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.5/src/commands/plugins/install.ts)_
_See code: [src/commands/plugins/install.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.6/src/commands/plugins/install.ts)_

## plugins:uninstall PLUGIN...

removes a plugin from the CLI

```
USAGE
$ oclif-example plugins:uninstall PLUGIN...
$ mycli plugins:uninstall PLUGIN...
ARGUMENTS
PLUGIN plugin to uninstall
```

_See code: [src/commands/plugins/uninstall.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.5/src/commands/plugins/uninstall.ts)_
_See code: [src/commands/plugins/uninstall.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.6/src/commands/plugins/uninstall.ts)_

## plugins:update

update installed plugins

```
USAGE
$ oclif-example plugins:update
$ mycli plugins:update
```

_See code: [src/commands/plugins/update.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.5/src/commands/plugins/update.ts)_
_See code: [src/commands/plugins/update.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.6/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,7 +1,7 @@
{
"name": "@oclif/plugin-plugins",
"description": "plugins plugin for oclif",
"version": "1.0.5",
"version": "1.0.6",
"author": "Jeff Dickey @jdxcode",
"bugs": "https://github.com/oclif/plugin-plugins/issues",
"dependencies": {
Expand Down

0 comments on commit 14b064a

Please sign in to comment.