Remove one or multiple directories
Install
$ npm install --save-dev fly-clear
Usage
exports { // single file flyclear'foo.js'; // single directory flyclear'dist'; // multiple directories flyclear'dist' 'build'; // glob pattern(s) flyclear'dist/*.css' 'dist/js/*'; // mixed flyclear'foo.js' 'build' 'dist/*.css'; // with options flyclear'dist' maxBusyTries: 5;}
API
fly.clear(files, [options])
files
Type: string
or array
A filepath, directory path, or glob pattern. For multiple paths, use an array
.
options
Type: object
Default: {}
All options are passed directly to rimraf
. Please see its documentation on options.
License
MIT © Luke Edwards