Skip to content

Commit

Permalink
Merge pull request #110 from kevinmu17/master
Browse files Browse the repository at this point in the history
jpegtran replaced with mozjpeg
  • Loading branch information
DanielRuf authored Jul 22, 2020
2 parents 8336d31 + 7b1df4c commit c2fcad4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ function javascript() {
function images() {
return gulp.src('src/assets/img/**/*')
.pipe($.if(PRODUCTION, $.imagemin([
$.imagemin.jpegtran({ progressive: true }),
$.imagemin.mozjpeg({ progressive: true }),
])))
.pipe(gulp.dest(PATHS.dist + '/assets/img'));
}
Expand Down

0 comments on commit c2fcad4

Please sign in to comment.