hopglass/tasks/clean.js

10 lines
193 B
JavaScript
Raw Permalink Normal View History

2015-03-29 14:43:02 +02:00
module.exports = function (grunt) {
grunt.config.merge({
clean: {
build: ["build/**/*", "node_modules/grunt-newer/.cache"]
}
})
grunt.loadNpmTasks("grunt-contrib-clean")
}