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