Last active
December 20, 2019 07:32
-
-
Save tterb/ea18078ad1aba5ae854a7c2fc646c64f to your computer and use it in GitHub Desktop.
Gulpfile images
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Optimize and copy image files | |
gulp.task('build:images', function() { | |
return gulp.src(paths.imageFilesGlob) | |
.pipe(imagemin({ | |
optimizationLevel: 3, | |
progressive: true, | |
interlaced: true, | |
use: [pngquant()] | |
})) | |
.pipe(gulp.dest(paths.jekyllImageFiles)) | |
.pipe(gulp.dest(paths.siteImageFiles)) | |
.pipe(browserSync.stream()); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment