gulp-memory-cache icon indicating copy to clipboard operation
gulp-memory-cache copied to clipboard

How can I create stream from cached files?

Open Disorrder opened this issue 9 years ago • 0 comments

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?

Disorrder avatar Jun 18 '16 20:06 Disorrder