Skip to content

Instantly share code, notes, and snippets.

@1stevengrant
Created August 2, 2016 13:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 1stevengrant/ffa380638e01a42a0c85a2576851ba93 to your computer and use it in GitHub Desktop.
Save 1stevengrant/ffa380638e01a42a0c85a2576851ba93 to your computer and use it in GitHub Desktop.
var gulp = require('gulp');
var imagemin = require('gulp-imagemin');
gulp.task('img', function() {
return gulp.src('./assets/images/*')
.pipe(imagemin({ progressive: true }))
.pipe(gulp.dest('./assets/images'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment