force-del-cli
v1.3.1
Published
Force delete files or folders using globs
Downloads
2
Maintainers
Readme
force-del-cli
Force delete files or folders using globs
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
- force-del – API for this module
- remove-lockfiles - Prevent committing lockfiles
License
MIT © Lufty Wiranda