systemjs-builder
Advanced tools
Comparing version 0.15.1 to 0.15.2
@@ -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 @@ |
@@ -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" |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
265022
5713
Updatedsystemjs@^0.19.15