force-del-cli

Force delete files or folders using globs

Usage no npm install needed!

<script type="module">
  import forceDelCli from 'https://cdn.skypack.dev/force-del-cli';
</script>

README

force-del-cli

Force delete files or folders using globs

Package Version Downloads Status Build Status: Linux

If the matching files or folders are managed by git, theyʼll be deleted and marked as deleted in staging area. Otherwise, theyʼll be deleted permanently (not to the trash).

How does it work?

  • Filters the files that should be deleted by using globby
  • Maps the matching paths one-by-one to be included in git rm -rf command
  • Uses rimraf if the matching item isnʼt managed by git
  • These processes run concurrently

Installation

npm install --global force-del-cli

Usage

$ force-del --help

  Usage
    $ force-del [<path|glob> ...]

  Options
    --cwd=<dir>  Current working directory
    --verbose    List deleted files

  Examples
    $ force-del silly-faces.jpg
    $ force-del '*.jpg' '!too-cute.jpg'
    $ force-del foo --cwd=../bar

Related

License

MIT © Lufty Wiranda