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

systemjs-builder

Package Overview
Dependencies
Maintainers
1
Versions
139
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

systemjs-builder - npm Package Compare versions

Comparing version 0.14.2 to 0.14.3

13

lib/builder.js

@@ -436,2 +436,15 @@ var Promise = require('rsvp').Promise;

// given a tree, creates a depCache for it
Builder.prototype.getDepCache = function(tree) {
var depCache = {};
Object.keys(tree).forEach(function(moduleName) {
var load = tree[moduleName];
if (load && load.deps.length)
depCache[moduleName] = load.deps.map(function(dep) {
return load.depMap[dep];
});
});
return depCache;
};
// expose useful tree statics on the builder instance for ease-of-use

@@ -438,0 +451,0 @@ Builder.prototype.intersectTrees = require('./arithmetic').intersectTrees;

2

package.json
{
"name": "systemjs-builder",
"version": "0.14.2",
"version": "0.14.3",
"description": "SystemJS Build Tool",

@@ -5,0 +5,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