hopglass/tasks/clean.js
2015-03-29 16:14:10 +02:00

10 lines
193 B
JavaScript

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