meshviewer/tasks/clean.js
2016-05-29 14:55:22 +02:00

12 lines
213 B
JavaScript

module.exports = function (grunt) {
"use strict";
grunt.config.merge({
clean: {
build: ["build/**/*", "node_modules/grunt-newer/.cache"]
}
});
grunt.loadNpmTasks("grunt-contrib-clean");
};