Builder是一个SystemJS构建工具。为混合依赖模块树的SystemJS提供了一个单文件构建(single-filebuild)。支持建立ES6到ES5,CommonJS,AMD和全局变量到单一文件,支持CSPSystemJS加载器和循环索引方式。
代码示例:
app.js
import $ from "./jquery";export var hello = 'es6';jquery.js
define(function() { return 'this is jquery';});
评论