我有以下结构:
/index.html
/ app / [我的应用程序文件] .ts
/ libs / [npm复制到库]
使用他们的例子,我可以得到一个我需要的单个文件,但它包含所有内容,包括库:
var builder = new Builder("angular/dist", "angular/dist/systemjs.config.js");
builder
.bundle("app/app.module.js", "bundle.js")
.then(function() {
console.log("Build complete");
})
.catch(function(err) {
console.log("Build error");
console.log(err);
});
但显然我的应用代码会经常更改,但我的库代码不那么多,所以我想在Gulp中使用systemjs builder来单独捆绑我的应用代码。
我仔细阅读了systemjs builder GitHub page上的所有示例,但我们并不是明智的。
我是如何实现这一目标的?