AdminLTE/grunt-tasks/clean.js

11 lines
216 B
JavaScript

// Delete images in build directory
// After compressing the images in the build/img dir, there is no need
// for them
'use strict';
module.exports = function (grunt) {
return {
build: ["build/img/*"]
};
};