AdminLTE/build/grunt/clean.js
2016-07-02 11:43:17 -04:00

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/*"]
};
};