clean.js 193 B

123456789
  1. module.exports = function (grunt) {
  2. grunt.config.merge({
  3. clean: {
  4. build: ["build/**/*", "node_modules/grunt-newer/.cache"]
  5. }
  6. })
  7. grunt.loadNpmTasks("grunt-contrib-clean")
  8. }