Socket
Book a DemoInstallSign in
Socket

fly-clear

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fly-clear

Remove one or multiple directories

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

fly-clear Build Status

Remove one or multiple directories

Install

$ npm install --save-dev fly-clear

Usage

exports.cleanup = function * (fly) {
  // single file
  yield fly.clear('foo.js');

  // single directory
  yield fly.clear('dist');

  // multiple directories
  yield fly.clear(['dist', 'build']);

  // glob pattern(s)
  yield fly.clear(['dist/*.css', 'dist/js/*']);

  // mixed
  yield fly.clear(['foo.js', 'build', 'dist/*.css']);

  // with options
  yield fly.clear('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

Keywords

clear

FAQs

Package last updated on 05 Feb 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts