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

broccoli-merge-trees

Package Overview
Dependencies
Maintainers
4
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

broccoli-merge-trees - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

13

index.js

@@ -21,2 +21,3 @@ 'use strict';

});
this.inputNodes = inputNodes;
this.options = options;

@@ -35,3 +36,13 @@ }

this.mergeTrees.merge();
try {
this.mergeTrees.merge();
} catch(err) {
if (err !== null && typeof err === 'object') {
let nodesList = this.inputNodes.map((node, i) => ` ${i+1}. ${node.toString()}`).join('\n');
let message = `${this.toString()} error while merging the following:\n${nodesList}`;
err.message = `${message}\n${err.message}`;
}
throw err;
}
};

2

package.json
{
"name": "broccoli-merge-trees",
"description": "Broccoli plugin to merge multiple trees into one",
"version": "2.0.0",
"version": "2.0.1",
"author": "Jo Liss <joliss42@gmail.com>",

@@ -6,0 +6,0 @@ "main": "index.js",

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