gulp-changed / gulp-newer + gulp-rename不起作用

时间:2015-11-02 20:04:41

标签: gulp gulp-rename gulp-changed gulp-newer

我试图绕过缩小,调整大小和重命名已处理的图像,添加'gulp-changed'对我来说没有任何改变;所有文件都经过处理。我尝试了'gulp-newer',但仍然没有运气。

后来,我已经想通了 - 如果我不知所措,改变了gulp-change工作正常。在任务中使用gulp-rename - 它没有。但无论如何我还需要gulp-rename ......

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));
});

2 个答案:

答案 0 :(得分:1)

所有文件都会被处理,因为任务中的gulp-changed(或gulp-newer)会检查名称为gulp.src(img_src)的文件的更改。 由于img_dest目录中没有原始名称的文件,因此将对img_src目录中的所有文件执行任务。

要解决此问题,可以使用暂存目录来修改文件。 例如:

1)创建新目录'_resize'。

2)修改gulpfile.js:

var img_resize = '_resize';

gulp.task( 'resize-xl', function () {
    return gulp.src( img_src )
       .pipe( changed( img_resize ) )

       // add here your image plugins: imageResize, imagemin, ..

       // save the modified files with original names on '_resize' dir
       .pipe( gulp.dest( img_resize ) )

       .pipe( rename( { suffix: '-2048' } ) )
       // save the modified files with new names on destanation dir
       .pipe( gulp.dest( img_dest ) );
} );

首次运行后,此任务将仅处理新文件和已更改文件

答案 1 :(得分:0)

您还可以在管道已更改插件之前重命名文件,以便插件获取具有新名称的源文件:

gulp.task( 'resize-xl', function () {
return gulp.src( img_src )
   // change name first
   .pipe( rename( { suffix: '-2048' } ) )
   .pipe( changed( img_dest ) )

   // add here your image plugins: imageResize, imagemin, ..

   .pipe( gulp.dest( img_dest ) );
} );