Socket
Socket
Sign inDemoInstall

@oclif/plugin-plugins

Package Overview
Dependencies
Maintainers
4
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.1.8 to 1.1.9

8

CHANGELOG.md

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

<a name="1.1.9"></a>
## [1.1.9](https://github.com/oclif/plugin-plugins/compare/v1.1.8...v1.1.9) (2018-05-07)
### Bug Fixes
* updated deps ([c74a09c](https://github.com/oclif/plugin-plugins/commit/c74a09c))
<a name="1.1.8"></a>

@@ -2,0 +10,0 @@ ## [1.1.8](https://github.com/oclif/plugin-plugins/compare/v1.1.7...v1.1.8) (2018-05-06)

2

lib/commands/plugins/uninstall.d.ts

@@ -15,3 +15,3 @@ import { Command } from '@oclif/command';

plugins: Plugins;
run(): Promise<void>;
run(): Promise<undefined>;
}

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

{"version":"1.1.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":["plugins:add"],"examples":["$ <%= config.bin %> plugins:install <%- config.pjson.oclif.examplePlugin || \"heroku-production-status\" %> "],"flags":{},"args":[{"name":"plugin","description":"plugin to install","required":true}]},"plugins:link":{"id":"plugins:link","description":"links a plugin into the CLI for development","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":"path","description":"path to plugin","required":true,"default":"."}]},"plugins:uninstall":{"id":"plugins:uninstall","description":"removes a plugin from the CLI","usage":"plugins:uninstall PLUGIN...","pluginName":"@oclif/plugin-plugins","pluginType":"core","aliases":["plugins:unlink","plugins:remove"],"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.1.9","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":["plugins:add"],"examples":["$ <%= config.bin %> plugins:install <%- config.pjson.oclif.examplePlugin || \"heroku-production-status\" %> "],"flags":{},"args":[{"name":"plugin","description":"plugin to install","required":true}]},"plugins:link":{"id":"plugins:link","description":"links a plugin into the CLI for development","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":"path","description":"path to plugin","required":true,"default":"."}]},"plugins:uninstall":{"id":"plugins:uninstall","description":"removes a plugin from the CLI","usage":"plugins:uninstall PLUGIN...","pluginName":"@oclif/plugin-plugins","pluginType":"core","aliases":["plugins:unlink","plugins:remove"],"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":[]}}}
{
"name": "@oclif/plugin-plugins",
"description": "plugins plugin for oclif",
"version": "1.1.8",
"version": "1.1.9",
"author": "Jeff Dickey @jdxcode",

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

"@heroku-cli/color": "^1.1.3",
"@oclif/command": "^1.4.20",
"@oclif/command": "^1.4.21",
"chalk": "^2.4.1",
"cli-ux": "^3.4.1",
"cli-ux": "^4.0.0",
"debug": "^3.1.0",
"fs-extra": "^6.0.0",
"http-call": "^5.1.1",
"http-call": "^5.1.2",
"load-json-file": "^5.0.0",

@@ -25,6 +25,6 @@ "npm-run-path": "^2.0.2",

"@oclif/dev-cli": "^1.13.18",
"@oclif/errors": "^1.0.8",
"@oclif/errors": "^1.0.9",
"@oclif/plugin-help": "^1.2.10",
"@oclif/test": "^1.0.6",
"@oclif/tslint": "^1.1.0",
"@oclif/tslint": "^1.1.1",
"@types/chai": "^4.1.3",

@@ -31,0 +31,0 @@ "@types/fs-extra": "^5.0.2",

@@ -81,3 +81,3 @@ @oclif/plugin-plugins

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

@@ -102,3 +102,3 @@ ## `mycli plugins:install PLUGIN...`

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

@@ -120,3 +120,3 @@ ## `mycli plugins:install PLUGIN...`

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

@@ -139,3 +139,3 @@ ## `mycli plugins:uninstall PLUGIN...`

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

@@ -151,3 +151,3 @@ ## `mycli plugins:update`

_See code: [src/commands/plugins/update.ts](https://github.com/oclif/plugin-plugins/blob/v1.1.8/src/commands/plugins/update.ts)_
_See code: [src/commands/plugins/update.ts](https://github.com/oclif/plugin-plugins/blob/v1.1.9/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