@oclif/command
Advanced tools
Comparing version 1.4.7 to 1.4.8
@@ -0,1 +1,9 @@ | ||
<a name="1.4.8"></a> | ||
## [1.4.8](https://github.com/oclif/command/compare/v1.4.7...v1.4.8) (2018-04-08) | ||
### Bug Fixes | ||
* throw error if no message ([c1ed043](https://github.com/oclif/command/commit/c1ed043)) | ||
<a name="1.4.7"></a> | ||
@@ -2,0 +10,0 @@ ## [1.4.7](https://github.com/oclif/command/compare/v1.4.6...v1.4.7) (2018-04-06) |
@@ -68,2 +68,4 @@ "use strict"; | ||
async catch(err) { | ||
if (!err.message) | ||
throw err; | ||
if (err.message.match(/Unexpected arguments?: (-h|--help|help)(,|\n)/)) { | ||
@@ -70,0 +72,0 @@ this._help(); |
{ | ||
"name": "@oclif/command", | ||
"description": "oclif base command", | ||
"version": "1.4.7", | ||
"version": "1.4.8", | ||
"author": "Jeff Dickey @jdxcode", | ||
@@ -6,0 +6,0 @@ "bugs": "https://github.com/oclif/command/issues", |
45361
387