UNPKG

kongadmin

Version:
22 lines (19 loc) 485 B
/** * `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'); };