unused-file-finder
v0.0.20
Published
This package will help you to find the files that you have in your project and that are not used.
Downloads
5
Maintainers
Readme
unused-file-finder
Installation
To install unused-file-finder
with yarn
, run:
yarn add unused-file-finder -D
Configuration
The default settings is:
{
"directory": ".",
"ignorePaths": [".git", "node_modules", "public"]
}
But if you need to modify it, you need to add a code similar to the following to your package.json:
"unusedFileFinder": {
"directory": ".",
"ignorePaths": [".git", "node_modules", "public"]
}
Examples
Using npx
in a standard Node.js project:
npx unused-file-finder