Socket
Socket
Sign inDemoInstall

systemjs-builder

Package Overview
Dependencies
99
Maintainers
1
Versions
139
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.15.27 to 0.15.28

17

compilers/cjs.js

@@ -96,2 +96,17 @@ var compiler = require('./compiler');

}]);
};
};
function remap(source, map, fileName) {
var options = {script: true};
var compiler = new traceur.Compiler(options);
var tree = compiler.parse(source, fileName);
var transformer = new CJSRequireTransformer('require', map);
tree = transformer.transformAny(tree);
var output = compiler.write(tree, fileName);
return Promise.resolve({
source: output
});
}
exports.remap = remap;

2

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

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc