UNPKG

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