hops-yargs
Advanced tools
Comparing version 14.3.2 to 14.4.0
@@ -6,2 +6,14 @@ # Change Log | ||
# [14.4.0](https://github.com/xing/hops/compare/v14.3.2...v14.4.0) (2021-09-02) | ||
### Bug Fixes | ||
* always use this.getLogger instead of console.* methods ([ebde9f7](https://github.com/xing/hops/commit/ebde9f7b1d0233c3f7619b026dbb73971a16b0ea)) | ||
* exit Hops on unrecovrable webpack errors ([1e13ef2](https://github.com/xing/hops/commit/1e13ef2bafa950c401d1f3ddb1664f90ef14e3db)) | ||
## [14.3.2](https://github.com/xing/hops/compare/v14.3.1...v14.3.2) (2021-08-02) | ||
@@ -8,0 +20,0 @@ |
@@ -18,3 +18,3 @@ const isPlainObject = require('is-plain-obj'); | ||
if (!recoverable) { | ||
if (recoverable !== true) { | ||
process.exit(1); | ||
@@ -26,4 +26,8 @@ } | ||
handleError(error) { | ||
// eslint-disable-next-line no-console | ||
console.error(error.stack || error); | ||
if (typeof this.getLogger === 'function') { | ||
// eslint-disable-next-line no-console | ||
this.getLogger().error(error.stack || error); | ||
} else { | ||
console.error(error.stack || error); | ||
} | ||
} | ||
@@ -30,0 +34,0 @@ } |
{ | ||
"name": "hops-yargs", | ||
"version": "14.3.2", | ||
"version": "14.4.0", | ||
"description": "yargs support for Hops applications", | ||
@@ -15,4 +15,4 @@ "repository": { | ||
"dependencies": { | ||
"hops-bootstrap": "14.3.2", | ||
"hops-mixin": "14.3.2", | ||
"hops-bootstrap": "14.4.0", | ||
"hops-mixin": "14.4.0", | ||
"is-plain-obj": "^3.0.0", | ||
@@ -25,3 +25,3 @@ "mixinable": "^5.0.1", | ||
}, | ||
"gitHead": "9fecc6dae1a4e7aa3a12c91511fa8cb66cd4a809" | ||
"gitHead": "c840047df0b8256a87ea437ca42261f85ad2ea47" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13144
100
+ Addedhops-bootstrap@14.4.0(transitive)
+ Addedhops-debug@14.4.0(transitive)
+ Addedhops-mixin@14.4.0(transitive)
- Removedhops-bootstrap@14.3.2(transitive)
- Removedhops-debug@14.3.2(transitive)
- Removedhops-mixin@14.3.2(transitive)
Updatedhops-bootstrap@14.4.0
Updatedhops-mixin@14.4.0