@oclif/command
Advanced tools
Comparing version 1.4.1 to 1.4.2
@@ -0,1 +1,9 @@ | ||
<a name="1.4.2"></a> | ||
## [1.4.2](https://github.com/oclif/command/compare/15212c3025cdc62433ec305a919b65487a53d8b0...v1.4.2) (2018-02-28) | ||
### Bug Fixes | ||
* add return type ([8808788](https://github.com/oclif/command/commit/8808788)) | ||
<a name="1.4.1"></a> | ||
@@ -2,0 +10,0 @@ ## [1.4.1](https://github.com/oclif/command/compare/0651ef054e01f9eb6e54cfff598d8b126f8aefe5...v1.4.1) (2018-02-28) |
@@ -30,3 +30,3 @@ import * as Config from '@oclif/config'; | ||
readonly ctor: typeof Command; | ||
_run(): Promise<void>; | ||
_run<T>(): Promise<T | undefined>; | ||
exit(code?: number): void; | ||
@@ -33,0 +33,0 @@ warn(input: string | Error): void; |
{ | ||
"name": "@oclif/command", | ||
"description": "oclif base command", | ||
"version": "1.4.1", | ||
"version": "1.4.2", | ||
"author": "Jeff Dickey @jdxcode", | ||
@@ -31,3 +31,3 @@ "bugs": "https://github.com/oclif/command/issues", | ||
"mocha": "^5.0.1", | ||
"ts-node": "^4.1.0", | ||
"ts-node": "^5.0.0", | ||
"tslint": "^5.9.1", | ||
@@ -34,0 +34,0 @@ "typescript": "^2.7.2" |
43720