Socket
Socket
Sign inDemoInstall

@oclif/plugin-help

Package Overview
Dependencies
Maintainers
2
Versions
165
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@oclif/plugin-help - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

2

.oclif.manifest.json

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

{"version":"1.2.0","commands":{"commands":{"id":"commands","pluginName":"@oclif/plugin-help","pluginType":"core","hidden":true,"aliases":[],"flags":{},"args":[]},"help":{"id":"help","description":"display help for <%= config.bin %>","pluginName":"@oclif/plugin-help","pluginType":"core","aliases":[],"flags":{"all":{"name":"all","type":"boolean","description":"see all commands in CLI"}},"args":[{"name":"command","description":"command to show help for","required":false}]}}}
{"version":"1.2.1","commands":{"commands":{"id":"commands","pluginName":"@oclif/plugin-help","pluginType":"core","hidden":true,"aliases":[],"flags":{},"args":[]},"help":{"id":"help","description":"display help for <%= config.bin %>","pluginName":"@oclif/plugin-help","pluginType":"core","aliases":[],"flags":{"all":{"name":"all","type":"boolean","description":"see all commands in CLI"}},"args":[{"name":"command","description":"command to show help for","required":false}]}}}

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

<a name="1.2.1"></a>
## [1.2.1](https://github.com/oclif/plugin-help/compare/v1.2.0...v1.2.1) (2018-03-24)
### Bug Fixes
* move help into its own section ([8099431](https://github.com/oclif/plugin-help/commit/8099431))
<a name="1.2.0"></a>

@@ -2,0 +10,0 @@ # [1.2.0](https://github.com/oclif/plugin-help/compare/v1.1.8...v1.2.0) (2018-03-24)

@@ -11,2 +11,3 @@ import * as Config from '@oclif/config';

protected description(): string | undefined;
protected version(): string;
}

@@ -19,5 +19,5 @@ "use strict";

description = description.split('\n')[0];
description = `${this.config.userAgent}\n${description}`;
let output = util_1.compact([
description,
this.version(),
this.usage(),

@@ -47,3 +47,9 @@ this.description(),

}
version() {
return [
bold('VERSION'),
indent(wrap(this.config.userAgent, this.opts.maxWidth - 2, { trim: false, hard: true }), 2),
].join('\n');
}
}
exports.default = RootHelp;
{
"name": "@oclif/plugin-help",
"description": "standard help for oclif",
"version": "1.2.0",
"version": "1.2.1",
"author": "Jeff Dickey @jdxcode",

@@ -6,0 +6,0 @@ "bugs": "https://github.com/oclif/plugin-help/issues",

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