Skip to content

Instantly share code, notes, and snippets.

@khansubhan95
Created May 1, 2017 10:04
Show Gist options
  • Save khansubhan95/0d7f754c8f683e01ae7358515c09cd29 to your computer and use it in GitHub Desktop.
Save khansubhan95/0d7f754c8f683e01ae7358515c09cd29 to your computer and use it in GitHub Desktop.
var gulp = require('gulp');
var imagemin = require('gulp-imagemin');
gulp.task('imagemin', function() {
return gulp.src('image_files') // Image source files
.pipe(imagemin())
.pipe(gulp.dest('destination_folder')) // Destination folder
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment