hopglass/tasks/clean.js
Nils Schneider bfe6fe346d grunt
2015-03-29 14:43:02 +02:00

12 lines
207 B
JavaScript

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