Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hops-yargs

Package Overview
Dependencies
Maintainers
5
Versions
83
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hops-yargs - npm Package Compare versions

Comparing version 14.3.2 to 14.4.0

12

CHANGELOG.md

@@ -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 @@

10

mixin.core.js

@@ -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"
}
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