, , . (/assets) .tmp, grunt, ( , ). , , .tmp, .tmp/public/uploads/year/month/, . caveat, , grunt, .tmp , , , , , clean.js , .
tasks/config/clean.js , , .
module.exports = function(grunt) {
grunt.config.set('clean', {
dev: [
getFolderPath('fonts/**'),
getFolderPath('images/**'),
getFolderPath('images/**'),
getFolderPath('js/**'),
getFolderPath('styles/**'),
getFolderPath('*.*')
],
build: ['www']
});
grunt.loadNpmTasks('grunt-contrib-clean');
};
function getFolderPath(folderName){
return '.tmp/public/' + folderName;
}
, . , .tmp/public/uploads/ , , mkdir, , .
, , , , , , , , , , , . :
sails.js