New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@ulixee/commons

Package Overview
Dependencies
Maintainers
2
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ulixee/commons - npm Package Compare versions

Comparing version 2.0.0-alpha.14 to 2.0.0-alpha.15

CHANGELOG.md

2

lib/envUtils.js

@@ -24,2 +24,4 @@ "use strict";

continue;
if (!value)
continue;
process.env[key] = value;

@@ -26,0 +28,0 @@ }

12

lib/Logger.js

@@ -146,5 +146,11 @@ "use strict";

}
if (key === 'error' && value) {
result.error = new Error(value.message);
Object.assign(result.error, value);
if (key === 'error') {
if (typeof value === 'object') {
const { message, ...rest } = value;
result.error = new Error(message);
Object.assign(result.error, rest);
}
else if (typeof value === 'string') {
result.error = new Error(value);
}
continue;

@@ -151,0 +157,0 @@ }

{
"name": "@ulixee/commons",
"version": "2.0.0-alpha.14",
"version": "2.0.0-alpha.15",
"description": "Common utilities for Ulixee",

@@ -19,3 +19,3 @@ "license": "MIT",

},
"gitHead": "c0ac6293de4e303098ac8d691415b9e06aae80de"
"gitHead": "4bf46a2ad49aad32f664c5983adf66b109b6a665"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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