# drop-chunk-assets-webpack-plugin

> Drop chunk assets when all you need is file-loader output

Latest version **0.1.0** (published 2017-05-30) · MIT license · 0 weekly downloads

## Install

```sh
npm install drop-chunk-assets-webpack-plugin
pnpm add drop-chunk-assets-webpack-plugin
yarn add drop-chunk-assets-webpack-plugin
bun add drop-chunk-assets-webpack-plugin
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2017-05-30 |
| First published | 2017-05-30 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Jonas Pommerening |
| Maintainers | jpommerening |

## Links

- npm: https://www.npmjs.com/package/drop-chunk-assets-webpack-plugin
- Repository: https://github.com/jpommerening/drop-chunk-assets-webpack-plugin
- Homepage: https://github.com/jpommerening/drop-chunk-assets-webpack-plugin#readme
- Issues: https://github.com/jpommerening/drop-chunk-assets-webpack-plugin/issues
- npm.io page: https://npm.io/package/drop-chunk-assets-webpack-plugin

## Recent versions

- 0.1.0 (latest) — 2017-05-30

## README

# drop-chunk-assets-webpack-plugin

> Drop the generated bundle if all you're interested in is (for example) file-loader output

## Usage

Example:

```js
const DropChunkAssetsPlugin = require( 'drop-chunk-assets-webpack-plugin' );

module.exports = {
  entry: {
    main: 'file-loader!img-loader!./cat.jpeg'
  },
  output: {
    filename: '[name].js'
  },
  plugins: [
    new DropChunkAssetsPlugin('main')
  ]
};
```

---
_Source: https://npm.io/package/drop-chunk-assets-webpack-plugin · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
