此功能的返回需要是一个流。在非手表模式下,这很容易;只返回rebundle,浏览器流转换,等等等等,好吧。但是,在监视模式下,每次更新都会运行rebundle,并且每次都会创建一个新流。我需要一种方法来整合所有这些流,因为它们被创建为一个我可以返回的单个无限流,并且实际上可以在线下消耗。使用组合流,似乎一旦数据被读取,流就不再是可写的,所以这是不行的。任何帮助将不胜感激!
var bundleify = function(watch) {
var bundler = (watch?watchify:browserify)('main.js');
var rebundle = function () {
return bundler.bundle()
.on('error', console.log)
.pipe(source('main.js'))
.pipe(rename('app.js'))
.pipe(jsTasks()); // lazypipe with other tasks
};
// Regular browserify, just return the stream.
if (!watch) {
return rebundle();
}
// Watchify, rebundle on update.
bundler.on('update', function() {
rebundle();
});
// return ????
}
答案 0 :(得分:0)
这是我提出的解决方案。这是一个非常贫民窟(诚然,我不太了解溪流),但看起来它正在发挥作用。仍然有兴趣找到一个更好的方式。
var outstream = through2.obj();
var interceptor = function(){
return through2.obj(function(obj, enc, cb) {
outstream.push(obj);
cb()
});
}
bundler.on('update', function() {
rebundle().pipe(interceptor());
});
rebundle().pipe(interceptor());
return outstream;