每次watchify检测到更改时,捆绑时间都会变慢。我的gulp任务肯定有问题。任何想法?
gulp.task('bundle', function() {
var bundle = browserify({
debug: true,
extensions: ['.js', '.jsx'],
entries: path.resolve(paths.root, files.entry)
});
executeBundle(bundle);
});
gulp.task('bundle-watch', function() {
var bundle = browserify({
debug: true,
extensions: ['.js', '.jsx'],
entries: path.resolve(paths.root, files.entry)
});
bundle = watchify(bundle);
bundle.on('update', function(){
executeBundle(bundle);
});
executeBundle(bundle);
});
function executeBundle(bundle) {
var start = Date.now();
bundle
.transform(babelify.configure({
ignore: /(bower_components)|(node_modules)/
}))
.bundle()
.on("error", function (err) { console.log("Error : " + err.message); })
.pipe(source(files.bundle))
.pipe(gulp.dest(paths.root))
.pipe($.notify(function() {
console.log('bundle finished in ' + (Date.now() - start) + 'ms');
}))
}
答案 0 :(得分:37)
我有同样的问题并通过将环境变量DEBUG设置为babel来调查它。 e.g:
$ DEBUG=babel gulp
检查调试输出后,我注意到babelify多次运行转换。
罪魁祸首是我每次执行捆绑时都实际添加了转换。你似乎有同样的问题。
移动
.transform(babelify.configure({
ignore: /(bower_components)|(node_modules)/
}))
从executeBundle
内部进入任务。新的bundle-watch
可以这样写:
gulp.task('bundle-watch', function() {
var bundle = browserify({
debug: true,
extensions: ['.js', '.jsx'],
entries: path.resolve(paths.root, files.entry)
});
bundle = watchify(bundle);
bundle.transform(babelify.configure({
ignore: /(bower_components)|(node_modules)/
}))
bundle.on('update', function(){
executeBundle(bundle);
});
executeBundle(bundle);
});