https://github.com/matthieulemoine/unused-webpack-plugin
A webpack plugin to find unused modules/source files.
https://github.com/matthieulemoine/unused-webpack-plugin
plugin unused webpack
Last synced: about 1 year ago
JSON representation
A webpack plugin to find unused modules/source files.
- Host: GitHub
- URL: https://github.com/matthieulemoine/unused-webpack-plugin
- Owner: MatthieuLemoine
- Created: 2017-10-07T15:45:38.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T08:19:33.000Z (over 3 years ago)
- Last Synced: 2025-03-28T14:10:01.393Z (about 1 year ago)
- Topics: plugin, unused, webpack
- Language: JavaScript
- Size: 1.08 MB
- Stars: 197
- Watchers: 1
- Forks: 19
- Open Issues: 38
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# UnusedWebpackPlugin [](https://circleci.com/gh/MatthieuLemoine/unused-webpack-plugin)
A webpack plugin to find unused modules/source files.

## Install
```
npm i --dev unused-webpack-plugin
```
## Usage
```javascript
const path = require('path');
const UnusedWebpackPlugin = require('unused-webpack-plugin');
module.exports = {
// webpack configuration
plugins: [
...otherPlugins,
new UnusedWebpackPlugin({
// Source directories
directories: [path.join(__dirname, 'src')],
// Exclude patterns
exclude: ['*.test.js'],
// Root directory (optional)
root: __dirname,
}),
],
};
```
## Options
- `directories` : array of directories where to look for unused source files.
- `exclude` : array of exclude patterns when looking for unused source files.
- `root` : root directory that will be use to display relative paths instead of absolute ones (see below)
- `failOnUnused`: whether or not the build should fail if unused files are found (defaults to `false`)
- `useGitIgnore`: whether or not to respect `.gitignore` file (defaults to `true`)
With root

Without root

## Related
If you're not using webpack, check out [remnants](https://github.com/MatthieuLemoine/remnants).