Guest User

Untitled

a guest
Nov 25th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. gulp.task('previews', function () {
  2. return gulp.src('src/img/works/*.{png,jpg}')
  3. .pipe(responsive({
  4. '*': [
  5. {
  6. width: 375,
  7. height: 400,
  8. rename: {
  9. suffix: '_preview',
  10. extname: '.jpg',
  11. },
  12. crop:{
  13. gravity: "north"
  14. }
  15. },
  16. {
  17. rename: {
  18. suffix: '_full',
  19. extname: '.jpg',
  20. }
  21. }
  22. ]
  23. }))
  24. .pipe(imagemin({progressive: true}))
  25. .pipe(gulp.dest('public/img/works'));
  26. });
Add Comment
Please, Sign In to add comment