A utility to safely clean a directory from clutter such as log files, modules, generated tests and more.
This small command line tool uses rimraf to safely clean the directory specified from clutter.
$ npm install -g cleanser
Cleans up the current working directory:
$ cleanser
Cleans a given directory:
$ cleanser ~/path/to/clean
Displays the help message:
$ cleanser --help
var cleanser = require('cleanser');
cleanser('~/path/to/clean', function (err) {});
ISC © Joaquin Briceno