@oclif/core
Advanced tools
Comparing version 1.3.3 to 1.3.4
@@ -5,2 +5,9 @@ # Changelog | ||
### [1.3.4](https://github.com/oclif/core/compare/v1.3.3...v1.3.4) (2022-02-11) | ||
### Bug Fixes | ||
* use error type instead of record ([#371](https://github.com/oclif/core/issues/371)) ([136ffe0](https://github.com/oclif/core/commit/136ffe06fe3dc3ddb6d018ced2b2cfaa9399d943)) | ||
### [1.3.3](https://github.com/oclif/core/compare/v1.3.2...v1.3.3) (2022-02-09) | ||
@@ -7,0 +14,0 @@ |
@@ -96,3 +96,5 @@ import { Config } from './config'; | ||
}>(options?: Interfaces.Input<F>, argv?: string[]): Promise<Interfaces.ParserOutput<F, A>>; | ||
protected catch(err: Record<string, any>): Promise<any>; | ||
protected catch(err: Error & { | ||
exitCode?: number; | ||
}): Promise<any>; | ||
protected finally(_: Error | undefined): Promise<any>; | ||
@@ -99,0 +101,0 @@ protected toSuccessJson(result: unknown): any; |
{ | ||
"name": "@oclif/core", | ||
"description": "base library for oclif CLIs", | ||
"version": "1.3.3", | ||
"version": "1.3.4", | ||
"author": "Salesforce", | ||
@@ -6,0 +6,0 @@ "bugs": "https://github.com/oclif/core/issues", |
283347
7183