Skip to content

Instantly share code, notes, and snippets.

@matallo
Created May 19, 2018 20:04
Show Gist options
  • Save matallo/5572442e43ffa26f9bf144bc55f03d9b to your computer and use it in GitHub Desktop.
Save matallo/5572442e43ffa26f9bf144bc55f03d9b to your computer and use it in GitHub Desktop.
gulp.task('responsive-images', ['html'], () => {
const cloudinaryURL = 'https://res.cloudinary.com/dcuclvhyb/image/upload/';
return gulp.src('dist/**/*.html')
.pipe(plugins.replace(/(\/img\/.*?\.(?:gif|jpeg|jpg|png|webp|svg))(\??([a-zA-Z0-9_:,]*))/g, (match, p1, p2, p3) => {
log(`Found ${match}`);
return `${cloudinaryURL}${p3}/v1526741840/matall.in${p1}`;
}))
.pipe(gulp.dest('dist'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment