FOGProject/fog-too

View on GitHub
tasks/config/clean.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * `clean`
 *
 * ---------------------------------------------------------------
 *
 * Remove the files and folders in your Sails app's web root
 * (conventionally a hidden directory called `.tmp/public`).
 *
 * For usage docs see:
 *   https://github.com/gruntjs/grunt-contrib-clean
 *
 */
module.exports = function(grunt) {

  grunt.config.set('clean', {
    dev: ['.tmp/public/**'],
    build: ['www']
  });

  grunt.loadNpmTasks('grunt-contrib-clean');
};