UNPKG

301 BJavaScriptView Raw
1var path = require('path'),
2 fs = require('fs'),
3 colors = require('colors'),
4 del = require('del');
5
6var cleanup = function(dir) {
7 console.log('Deleting: ' + dir.yellow);
8 del(dir);
9 console.log('------------------ DONE ------------------'.green)
10}
11
12exports.cleanup = cleanup;
\No newline at end of file