I try to bypass minifying, resizing and renaming already processed images, and adding 'gulp-changed' changed nothing for me; all the files are processed, еvery time. I tried 'gulp-newer' instead, but still with no luck.
Later, I've figured out - if I'll spare gulp-rename, gulp-changed works fine. With gulp-rename in the task - it doesn't. But I need gulp-rename anyway...
var gulp = require('gulp');
var changed = require('gulp-changed');
var imagemin = require('gulp-imagemin');
var pngquant = require('imagemin-pngquant');
var imageResize = require('gulp-image-resize');
var rename = require('gulp-rename');
var img_src = ['_img/**/*.jpg', '_img/**/*.png'];
var img_dest = '_site/img';
gulp.task('resize-xl', function () {
return gulp.src(img_src)
.pipe(changed(img_dest))
.pipe(imageResize({
width : 2048,
crop : false,
upscale : true,
sharpen: false,
quality: 1
}))
.pipe(imagemin({
progressive: true,
svgoPlugins: [{removeViewBox: false}],
use: [pngquant()]
}))
.pipe(rename(function (path) {
path.basename += "-2048";
}))
.pipe(gulp.dest(img_dest));
});
All the files are processed, еvery time because
gulp-changed
( orgulp-newer
) in your task check for changes to files with names ofgulp.src(img_src)
. And since there are inimg_dest
dir no files with original names, task will be executed for all files in theimg_src
dir.To solve this problem, you can use a staging directory for modified files. For example:
1) Create new directory, '_resize'.
2) Modify gulpfile.js:
After first run this task will process only new and changed files