gulp-imagemin 没有压缩图片
项目里引用了gulp-imagemin这个task, task运行正常没有报错,但是在dist目录中发现图片并没有被压缩。
gulp.task('images', () => {
return gulp.src('app/images/**/*')
.pipe($.if($.if.isFile, $.cache($.imagemin({ //使用"gulp-cache"只压缩修改的图片
optimizationLevel: 5, //类型:Number 默认:3 取值范围:0-7(优化等级)
progressive: true, //类型:Boolean 默认:false 无损压缩jpg图片
interlaced: true,
// don't remove IDs from SVGs, they are often used
// as hooks for embedding and styling
svgoPlugins: [{ cleanupIDs: false }],
use: [pngquant()] //使用pngquant深度压缩png图片
}))
.on('error', function(err) {
console.log(err);
this.end();
})))
.pipe($.rev())
.pipe(gulp.dest('dist/images'))
.pipe($.rev.manifest())
.pipe(gulp.dest('dist/rev/images'))
});
请大神帮忙看看我这个task有没有问题。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我也没反应,请问你解决了吗
你这个问题解决了没 我也遇到了打包不报错 dist下面images文件压根就没有压缩
直接写下default 上是可以执行的 但是为啥用auto作为另一个task不能运行