私は gulp のソース コードについて学んでおり、gulp プラグインを作成しようとしました。
今、私は何かについて混乱しています。
これは以下の私のプラグインコードです:
module.exports = function(){
return through2.obj(function(file,encode,callback){
console.log(vinyl.isVinyl(file));//false
console.log(file._isVinyl) // undefined
// the reason ? file is not Object of vinyl ? file's property of '_isVinyl' is undefine ?
if(file.isNull()){
callback(null,file);
}
if(file.isStream()){
file.contents = file.contents.pipe(through2(function(chuck,encode,callback){
if(util.isNull(chuck)){
callback(null, chuck);
}
if(util.isBuffer(chuck)){
chuck = new Buffer(String(chuck)
.replace(commentReg, '')
.replace(blankSpaceReg,''))
}
callback(null,chuck);
}));
}
if(file.isBuffer()){
file.contents = new Buffer(String(file.contents)
.replace(commentReg, '')
.replace(blankSpaceReg,''));
}
callback(null,file);
})
}
vinyl
これは、ファイルが作成されるgulp ソース コードの一部です。
https://github.com/gulpjs/vinyl-fs/blob/master/lib/src/wrap-with-vinyl-file.js
私の混乱:
transformFunction
登録済みは、ファイルである必要があるオブジェクトをthough2.obj()
受け取ります。file
vinyl
なぜvinyl.isVinyl()
戻るのfalse
ですか?
file
オブジェクトに_isVinyl
プロパティがないのはなぜですか?