clean.js 207 B

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