Socket
Socket
Sign inDemoInstall

@oclif/plugin-plugins

Package Overview
Dependencies
Maintainers
3
Versions
275
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@oclif/plugin-plugins - npm Package Compare versions

Comparing version 1.0.7 to 1.0.8

2

.oclif.manifest.json

@@ -1,1 +0,1 @@

{"version":"1.0.7","commands":{"plugins":{"id":"plugins","description":"list installed plugins","pluginName":"@oclif/plugin-plugins","pluginType":"core","aliases":[],"examples":["$ <%- config.bin %> plugins"],"flags":{"core":{"name":"core","type":"boolean","description":"show core plugins"}},"args":[]},"plugins:install":{"id":"plugins:install","description":"installs a plugin into the CLI","usage":"plugins:install PLUGIN...","pluginName":"@oclif/plugin-plugins","pluginType":"core","aliases":[],"examples":["$ <%= config.bin %> plugins:install <%- config.pjson.oclif.examplePlugin || \"heroku-production-status\" %> "],"flags":{},"args":[{"name":"plugin","description":"plugin to install","required":true}]},"plugins:uninstall":{"id":"plugins:uninstall","description":"removes a plugin from the CLI","usage":"plugins:uninstall PLUGIN...","pluginName":"@oclif/plugin-plugins","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"plugin","description":"plugin to uninstall","required":true}]},"plugins:update":{"id":"plugins:update","description":"update installed plugins","pluginName":"@oclif/plugin-plugins","pluginType":"core","aliases":[],"flags":{},"args":[]}}}
{"version":"1.0.8","commands":{"plugins":{"id":"plugins","description":"list installed plugins","pluginName":"@oclif/plugin-plugins","pluginType":"core","aliases":[],"examples":["$ <%- config.bin %> plugins"],"flags":{"core":{"name":"core","type":"boolean","description":"show core plugins"}},"args":[]},"plugins:install":{"id":"plugins:install","description":"installs a plugin into the CLI","usage":"plugins:install PLUGIN...","pluginName":"@oclif/plugin-plugins","pluginType":"core","aliases":[],"examples":["$ <%= config.bin %> plugins:install <%- config.pjson.oclif.examplePlugin || \"heroku-production-status\" %> "],"flags":{},"args":[{"name":"plugin","description":"plugin to install","required":true}]},"plugins:uninstall":{"id":"plugins:uninstall","description":"removes a plugin from the CLI","usage":"plugins:uninstall PLUGIN...","pluginName":"@oclif/plugin-plugins","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"plugin","description":"plugin to uninstall","required":true}]},"plugins:update":{"id":"plugins:update","description":"update installed plugins","pluginName":"@oclif/plugin-plugins","pluginType":"core","aliases":[],"flags":{},"args":[]}}}

@@ -0,1 +1,9 @@

<a name="1.0.8"></a>
## [1.0.8](https://github.com/oclif/plugin-plugins/compare/v1.0.7...v1.0.8) (2018-03-24)
### Bug Fixes
* use new semantic-release ([9898b8e](https://github.com/oclif/plugin-plugins/commit/9898b8e))
<a name="1.0.7"></a>

@@ -2,0 +10,0 @@ ## [1.0.7](https://github.com/oclif/plugin-plugins/compare/e018e45bcd779ac2463c7e218c151356cc58694f...v1.0.7) (2018-03-23)

{
"name": "@oclif/plugin-plugins",
"description": "plugins plugin for oclif",
"version": "1.0.7",
"version": "1.0.8",
"author": "Jeff Dickey @jdxcode",

@@ -9,5 +9,5 @@ "bugs": "https://github.com/oclif/plugin-plugins/issues",

"@heroku-cli/color": "^1.1.3",
"@oclif/command": "^1.4.2",
"@oclif/command": "^1.4.4",
"chalk": "^2.3.2",
"cli-ux": "^3.3.25",
"cli-ux": "^3.3.26",
"debug": "^3.1.0",

@@ -23,6 +23,6 @@ "fs-extra": "^5.0.0",

"devDependencies": {
"@oclif/config": "^1.3.59",
"@oclif/dev-cli": "^1.4.0",
"@oclif/config": "^1.3.60",
"@oclif/dev-cli": "^1.4.2",
"@oclif/errors": "^1.0.2",
"@oclif/plugin-help": "^1.1.6",
"@oclif/plugin-help": "^1.2.0",
"@oclif/test": "^1.0.1",

@@ -29,0 +29,0 @@ "@oclif/tslint": "^1.0.2",

@@ -60,8 +60,9 @@ @oclif/plugin-plugins

<!-- commands -->
* [mycli plugins](#plugins)
* [mycli plugins:install PLUGIN...](#pluginsinstall-plugin)
* [mycli plugins:uninstall PLUGIN...](#pluginsuninstall-plugin)
* [mycli plugins:update](#pluginsupdate)
## plugins
* [mycli plugins](#mycli-plugins)
* [mycli plugins:install PLUGIN...](#mycli-pluginsinstall-plugin)
* [mycli plugins:uninstall PLUGIN...](#mycli-pluginsuninstall-plugin)
* [mycli plugins:update](#mycli-pluginsupdate)
## mycli plugins
list installed plugins

@@ -80,5 +81,5 @@

_See code: [src/commands/plugins.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.7/src/commands/plugins.ts)_
_See code: [src/commands/plugins.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.8/src/commands/plugins.ts)_
### plugins:install PLUGIN...
### mycli plugins:install PLUGIN...

@@ -98,5 +99,5 @@ installs a plugin into the CLI

_See code: [src/commands/plugins/install.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.7/src/commands/plugins/install.ts)_
_See code: [src/commands/plugins/install.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.8/src/commands/plugins/install.ts)_
### plugins:uninstall PLUGIN...
### mycli plugins:uninstall PLUGIN...

@@ -113,5 +114,5 @@ removes a plugin from the CLI

_See code: [src/commands/plugins/uninstall.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.7/src/commands/plugins/uninstall.ts)_
_See code: [src/commands/plugins/uninstall.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.8/src/commands/plugins/uninstall.ts)_
### plugins:update
### mycli plugins:update

@@ -125,5 +126,5 @@ update installed plugins

_See code: [src/commands/plugins/update.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.7/src/commands/plugins/update.ts)_
_See code: [src/commands/plugins/update.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.8/src/commands/plugins/update.ts)_
## plugins:install PLUGIN...
## mycli plugins:install PLUGIN...

@@ -143,5 +144,5 @@ installs a plugin into the CLI

_See code: [src/commands/plugins/install.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.7/src/commands/plugins/install.ts)_
_See code: [src/commands/plugins/install.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.8/src/commands/plugins/install.ts)_
## plugins:uninstall PLUGIN...
## mycli plugins:uninstall PLUGIN...

@@ -158,5 +159,5 @@ removes a plugin from the CLI

_See code: [src/commands/plugins/uninstall.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.7/src/commands/plugins/uninstall.ts)_
_See code: [src/commands/plugins/uninstall.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.8/src/commands/plugins/uninstall.ts)_
## plugins:update
## mycli plugins:update

@@ -170,3 +171,3 @@ update installed plugins

_See code: [src/commands/plugins/update.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.7/src/commands/plugins/update.ts)_
_See code: [src/commands/plugins/update.ts](https://github.com/oclif/plugin-plugins/blob/v1.0.8/src/commands/plugins/update.ts)_
<!-- commandsstop -->
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc