New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@oclif/command

Package Overview
Dependencies
Maintainers
4
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@oclif/command - npm Package Compare versions

Comparing version 1.4.34 to 1.4.35

8

CHANGELOG.md

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

<a name="1.4.35"></a>
## [1.4.35](https://github.com/oclif/command/compare/v1.4.34...v1.4.35) (2018-07-19)
### Bug Fixes
* only flush if errorLogger present ([#41](https://github.com/oclif/command/issues/41)) ([f183916](https://github.com/oclif/command/commit/f183916))
<a name="1.4.34"></a>

@@ -2,0 +10,0 @@ ## [1.4.34](https://github.com/oclif/command/compare/v1.4.33...v1.4.34) (2018-06-26)

6

lib/command.d.ts

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

_run<T>(): Promise<T | undefined>;
exit(code?: number): never;
exit(code?: number): void;
warn(input: string | Error): void;

@@ -53,5 +53,5 @@ error(input: string | Error, options: {

protected finally(_: Error | undefined): Promise<any>;
protected _help(): never;
protected _help(): void;
protected _helpOverride(): boolean;
protected _version(): never;
protected _version(): void;
}

@@ -91,3 +91,5 @@ "use strict";

try {
await require('@oclif/errors').config.errorLogger.flush();
const config = require('@oclif/errors').config;
if (config.errorLogger)
await config.errorLogger.flush();
// tslint:disable-next-line no-console

@@ -94,0 +96,0 @@ }

@@ -5,2 +5,2 @@ import Command from './command';

export default Command;
export { Command, flags, };
export { Command, flags };

@@ -6,6 +6,6 @@ import * as Config from '@oclif/config';

init(): Promise<any>;
run(): Promise<undefined>;
run(): Promise<void>;
protected _helpOverride(): boolean;
protected _help(): never;
protected _help(): void;
}
export declare function run(argv?: string[], options?: Config.LoadOptions): Promise<any>;
{
"name": "@oclif/command",
"description": "oclif base command",
"version": "1.4.34",
"version": "1.4.35",
"author": "Jeff Dickey @jdxcode",

@@ -6,0 +6,0 @@ "bugs": "https://github.com/oclif/command/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