machinepack-waterline
Version:
A database-agnostic connectivity library for sending queries, managing dynamic db connections, committing/rolling back transactions, and more.
22 lines (19 loc) • 464 B
JavaScript
/**
* `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');
};