hopglass/tasks/clean.js

12 lines
213 B
JavaScript
Raw Normal View History

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