10 lines
196 B
JavaScript
10 lines
196 B
JavaScript
module.exports = function (grunt) {
|
|
grunt.config.merge({
|
|
clean: {
|
|
build: ["build/**/*", "node_modules/grunt-newer/.cache"]
|
|
}
|
|
});
|
|
|
|
grunt.loadNpmTasks("grunt-contrib-clean");
|
|
};
|