# ignore-loader

> Webpack loader to ignore certain package on build.

Latest version **0.1.2** (published 2016-11-11) · 0 weekly downloads

## Install

```sh
npm install ignore-loader
pnpm add ignore-loader
yarn add ignore-loader
bun add ignore-loader
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.2 |
| Published | 2016-11-11 |
| First published | 2015-11-01 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 96 |
| Maintainers | cherrry |

## Links

- npm: https://www.npmjs.com/package/ignore-loader
- Repository: https://github.com/cherrry/ignore-loader
- Homepage: https://github.com/cherrry/ignore-loader#readme
- Issues: https://github.com/cherrry/ignore-loader/issues
- npm.io page: https://npm.io/package/ignore-loader

## Recent versions

- 0.1.2 (latest) — 2016-11-11
- 0.1.1 — 2015-11-05
- 0.1.0 — 2015-11-01

## README

# ignore-loader

To ignore certain files when building webpack application.

## Install

```
$ npm install --save-dev ignore-loader
```

## Usage (Ignoring all `.css`)

- In `webpack.config.js`

```js
module.exports = {
  // other configurations
  module: {
    loaders: [
      { test: /\.css$/, loader: 'ignore-loader' }
    ]
  }
};
```

---
_Source: https://npm.io/package/ignore-loader · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
