light-boilerplate
Version:
Lightweight and powerfull startkit for your next project!
18 lines (14 loc) • 387 B
JavaScript
/**
* Contentimages
* @description Copy and Compress all Images
* Inline Images (SVG, PNG, JPG, GIF)
*/
import meow from '../../config.json';
import gulp from 'gulp';
import copyImages from '../lib/copyImages';
function copyContentimagesTask(cb) {
// Call the Function
copyImages(meow.src.contentimage, meow.dist.contentimage);
cb();
}
export default copyContentimagesTask;