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.6 to 1.0.7

2

.oclif.manifest.json

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

{"version":"1.0.6","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.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":[]}}}

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

<a name="1.0.7"></a>
## [1.0.7](https://github.com/oclif/plugin-plugins/compare/e018e45bcd779ac2463c7e218c151356cc58694f...v1.0.7) (2018-03-23)
### Bug Fixes
* updated deps ([4e23c65](https://github.com/oclif/plugin-plugins/commit/4e23c65))
<a name="1.0.6"></a>

@@ -2,0 +10,0 @@ ## [1.0.6](https://github.com/oclif/plugin-plugins/compare/0a0155d9f2ac09ecde7f8ce2b15b85fae6c5cba8...v1.0.6) (2018-03-22)

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

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

"@oclif/config": "^1.3.59",
"@oclif/dev-cli": "^1.3.1",
"@oclif/dev-cli": "^1.4.0",
"@oclif/errors": "^1.0.2",

@@ -32,4 +32,4 @@ "@oclif/plugin-help": "^1.1.6",

"@types/load-json-file": "^2.0.7",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.7",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.0",
"@types/semver": "^5.5.0",

@@ -41,3 +41,3 @@ "@types/supports-color": "^3.1.0",

"globby": "^8.0.1",
"mocha": "^5.0.4",
"mocha": "^5.0.5",
"ts-node": "5",

@@ -44,0 +44,0 @@ "tslint": "^5.9.1",

@@ -18,2 +18,3 @@ @oclif/plugin-plugins

* [Usage](#usage)
* [Friendly names](#friendly-names)
* [Commands](#commands)

@@ -52,5 +53,10 @@ <!-- tocstop -->

# Friendly names
To make it simpler for users to install plugins, we have "friendly name" functionality. With this, you can run `mycli plugins:install myplugin` and it will first check if `@mynpmorg/plugin-myplugin` exists on npm before trying to install `myplugin`. This is useful if you want to use a generic name that's already taken in npm.
To set this up, simply set the `oclif.scope` to the name of your npm org. In the example above, this would be `mynpmorg`.
# Commands
<!-- commands -->
# Commands
* [mycli plugins](#plugins)

@@ -75,3 +81,3 @@ * [mycli plugins:install PLUGIN...](#pluginsinstall-plugin)

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

@@ -93,3 +99,3 @@ ### plugins:install PLUGIN...

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

@@ -108,3 +114,3 @@ ### plugins:uninstall PLUGIN...

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

@@ -120,3 +126,3 @@ ### plugins:update

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

@@ -138,3 +144,3 @@ ## plugins:install PLUGIN...

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

@@ -153,3 +159,3 @@ ## plugins:uninstall PLUGIN...

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

@@ -165,3 +171,3 @@ ## plugins:update

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