gulp-memory-cache
gulp-memory-cache copied to clipboard
How can I create stream from cached files?
gulp.src('**/*.jade')
.pipe(jade())
.pipe(cache('tmpl'))
// -- another task --
cache.GetStreamFrom('tmpl')
.pipe some staff
.pipe(gulp.dest('dist'))
Should I use through2 or any like this?