light-boilerplate
Version:
Lightweight and powerfull startkit for your next project!
16 lines (13 loc) • 373 B
JavaScript
/**
* Copy Bitmaps
* @description Move all Bitmap Images (from bitmapSingle-assets) to the .dist Folder
*/
import meow from '../../config.json';
import gulp from 'gulp';
import copyImages from '../lib/copyImages';
function copyBitmapsTask(cb) {
// Call the Function
copyImages(meow.src.images.bitmaps, meow.dist.bitmaps);
cb();
}
export default copyBitmapsTask;