AdminLTE/build/grunt/clean.js

11 lines
216 B
JavaScript
Raw Normal View History

2016-06-23 16:54:19 +02:00
// 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/*"]
};
};