gulp-cached
gulp-cached copied to clipboard
A simple in-memory file cache for gulp
Not sure if this is the right place to log this or not. Sorry if it is not. Currently gulp-cached and gulp-typescript cannot work together if you are using global...
Hi, I am trying to configure gulp-cached in my streams, but code injection of Browser Sync not works. This is my code: ```javascript gulp.task(config.css.task, function () { return gulp.src(config.css.source) .pipe(cache('css'))...
I have an images task that pipes/minifies etc to an images folder along with automated image optimization. I was experiencing a performance problem where if I only changed/deleted/added 1 image,...
Now on gulp-community.
``` gulp.task('indexfiles', function() { return gulp.src('./**/index.src.php') .pipe(inlinesource()) .pipe(usemin({ inlinecss: [ minifyCss, 'concat' ], inlinejs: [uglify(), 'concat'] })) .pipe(cache('index')) .pipe(gulpif( (process.env.ENV !== 'development'), replace('"/assets/', '"https://cdn/assets/') )) .pipe(rename({ basename: 'index' })) .pipe(gulp.dest('.'));...
Currently, when I run my `gulp watch` task, everything is linted on the first save. The **second** time around, only the file I changed gets linted. My question: Is there...
I want to use gulp-imagemin which is a very slow and processor intensive task and I am working in a team environment using Git. How can I make sure that...
When saving to `dest` only files processed there are empty directories being created as well, totally reflecting `src` directory structure: http://stackoverflow.com/a/33689435/5274538
Hello, i recently changed from gulp-cached to gulp-changed, and since then, i haven't seen any seg fault errors. I use it for production to copy files from dev to production,...