clean.js 453 B

1234567891011121314151617181920
  1. /**
  2. * Clean files and folders.
  3. *
  4. * ---------------------------------------------------------------
  5. *
  6. * This grunt task is configured to clean out the contents in the .tmp/public of your
  7. * sails project.
  8. *
  9. * For usage docs see:
  10. * https://github.com/gruntjs/grunt-contrib-clean
  11. */
  12. module.exports = function(grunt) {
  13. grunt.config.set('clean', {
  14. dev: ['.tmp/public/**'],
  15. build: ['www']
  16. });
  17. grunt.loadNpmTasks('grunt-contrib-clean');
  18. };