我正在尝试使用gulp-data将数据传递到另一个插件,但它无法正常工作。我想看看gulp-data在流中插入了什么。我怎么能这样做?
答案 0 :(得分:0)
这是一个用于调试gulp-data的丑陋但简单的解决方案:
var through = require('through2');
gulp.src(yourGlob)
.pipe(plumber())
.pipe(data(function(){return envAndArgs}))
.pipe(through.obj(function(file,enc,cb){console.log('file.data:'+JSON.stringify(file.data,null,2))}));