Created
May 1, 2017 10:04
-
-
Save khansubhan95/0d7f754c8f683e01ae7358515c09cd29 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| 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