hopglass/tasks/clean.js
2017-03-18 16:26:29 +01: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");
};