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

bilderhic

Package Overview
Dependencies
Maintainers
1
Versions
105
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bilderhic - npm Package Compare versions

Comparing version 1.0.9 to 1.0.10

2

package.json
{
"name": "bilderhic",
"version": "1.0.9",
"version": "1.0.10",
"description": "Bilderhic (bhic) is a smart and simple build tool",

@@ -5,0 +5,0 @@ "preferGlobal": true,

@@ -33,2 +33,7 @@ /** @typedef {import("../../environment")} Environment */

_path = this.environment.applyVariables(_path);
if (_path.indexOf("[") !== -1 && _path.indexOf("]") !== -1) {
throw new Error(`One or more undefined variables in path "${_path}"`);
}
_path = path.resolve(this.environment.cwd, _path);

@@ -38,3 +43,4 @@ return _path;

catch (err) {
throw new Error(`Error parsing "${_path}". ${err + ""}.`);
let msg = "" + (err.error || err.message || err);
throw new Error(`Error parsing "${_path}". ${msg + ""}.`);
}

@@ -41,0 +47,0 @@ }

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