gulp-memory-cache
gulp-memory-cache copied to clipboard
A gulp 4+ plugin for caching files in memory, with incremental build helpers.
Results
2
gulp-memory-cache issues
Sort by
recently updated
recently updated
newest added
First off, this package has reduced our concatenated JS file build by an order of magnitude. Thank you for publishing it! I think I discovered an issue with it. Our...
``` 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?