2015-03-29 12:43:02 +00:00
|
|
|
module.exports = function (grunt) {
|
2016-05-27 21:59:01 +00:00
|
|
|
"use strict";
|
|
|
|
|
2015-03-29 12:43:02 +00:00
|
|
|
grunt.config.merge({
|
|
|
|
clean: {
|
|
|
|
build: ["build/**/*", "node_modules/grunt-newer/.cache"]
|
|
|
|
}
|
2016-05-22 11:23:43 +00:00
|
|
|
});
|
2015-03-29 12:43:02 +00:00
|
|
|
|
2016-05-22 11:23:43 +00:00
|
|
|
grunt.loadNpmTasks("grunt-contrib-clean");
|
|
|
|
};
|