hopglass/tasks/clean.js
2017-03-17 03:23:07 +01:00

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");
};