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.15.1 to 0.15.2

4

lib/builder.js

@@ -127,2 +127,6 @@ var Promise = require('bluebird');

};
// ensure this loader doesn't attempt to load the runtime
loader._loader.loadedTranspilerRuntime = true;
var pluginLoader = loader.pluginLoader = new baseLoader.constructor();

@@ -129,0 +133,0 @@

13

lib/compile.js

@@ -178,2 +178,3 @@ var Promise = require('bluebird');

function compileTree(loader, tree, traceOpts, compileOpts, outputOpts, cache) {
// verify that the tree is a tree

@@ -360,4 +361,4 @@ verifyTree(tree);

if (externalDeps.indexOf(name) == -1)
externalDeps.push(name);
if (externalDeps.indexOf(key) == -1)
externalDeps.push(key);
}

@@ -369,5 +370,7 @@ });

if (compileOpts.format == 'global') {
if (!compileOpts.globalDeps[dep])
throw new TypeError('Global SFX bundle dependency "' + dep + '" must be configured to an environment global via the globalDeps option.');
globalDeps.push(compileOpts.globalDeps[dep]);
var alias = getAlias(loader, dep);
var globalDep = compileOpts.globalDeps[dep] || compileOpts.globalDeps[alias];
if (!globalDep)
throw new TypeError('Global SFX bundle dependency "' + alias + '" must be configured to an environment global via the globalDeps option.');
globalDeps.push(globalDep);
}

@@ -374,0 +377,0 @@

{
"name": "systemjs-builder",
"version": "0.15.1",
"version": "0.15.2",
"description": "SystemJS Build Tool",

@@ -13,3 +13,3 @@ "main": "index.js",

"source-map": "^0.5.3",
"systemjs": "^0.19.14",
"systemjs": "^0.19.15",
"traceur": "0.0.95",

@@ -16,0 +16,0 @@ "uglify-js": "^2.6.1"

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