This commit is contained in:
2017-07-28 18:19:06 +02:00
parent eb0d9b6f56
commit d6e66fdfb9
7 changed files with 236 additions and 61 deletions

View File

@ -40,11 +40,10 @@ Module._resolveFilename = function (request, parent, isMain) {
}
}
export let gulpPipe = function () {
return through2.obj(function (file, enc, cb) {
cache[file.path] = file;
return cb(null, file);
cache[file.path] = file
return cb(null, file)
})
}