Skip to content

Commit

Permalink
chore(release): 1.5.2 [skip ci]
Browse files Browse the repository at this point in the history
<a name="1.5.2"></a>
## [1.5.2](v1.5.1...v1.5.2) (2018-06-12)

### Bug Fixes

* Added clarifications to the behaviour of plugin:install and plugin:link ([#47](#47)) ([dc2cedf](dc2cedf)), closes [#45](#45)
  • Loading branch information
oclif-bot committed Jun 12, 2018
1 parent dc2cedf commit 1c916ad
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 6 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.5.2"></a>
## [1.5.2](https://github.com/oclif/plugin-plugins/compare/v1.5.1...v1.5.2) (2018-06-12)


### Bug Fixes

* Added clarifications to the behaviour of plugin:install and plugin:link ([#47](https://github.com/oclif/plugin-plugins/issues/47)) ([dc2cedf](https://github.com/oclif/plugin-plugins/commit/dc2cedf)), closes [#45](https://github.com/oclif/plugin-plugins/issues/45)

<a name="1.5.1"></a>
## [1.5.1](https://github.com/oclif/plugin-plugins/compare/v1.5.0...v1.5.1) (2018-06-12)

Expand Down
22 changes: 17 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ EXAMPLE
$ mycli plugins
```

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

## `mycli plugins:install PLUGIN...`

Expand All @@ -98,6 +98,12 @@ OPTIONS
DESCRIPTION
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
$ mycli plugins:add
Expand All @@ -107,7 +113,7 @@ EXAMPLES
$ mycli plugins:install someuser/someplugin
```

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

## `mycli plugins:link PLUGIN`

Expand All @@ -124,11 +130,17 @@ OPTIONS
-h, --help show CLI help
-v, --verbose
DESCRIPTION
Installation of a linked plugin will override a user-installed or core plugin.
e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
command will override the user-installed or core plugin implementation. This is useful for development work.
EXAMPLE
$ mycli plugins:link myplugin
```

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

## `mycli plugins:uninstall PLUGIN...`

Expand All @@ -150,7 +162,7 @@ ALIASES
$ mycli plugins:remove
```

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

## `mycli plugins:update`

Expand All @@ -165,5 +177,5 @@ OPTIONS
-v, --verbose
```

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

0 comments on commit 1c916ad

Please sign in to comment.