Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/cherrry/ignore-loader

Webpack loader to ignore certain package on build.
https://github.com/cherrry/ignore-loader

javascript webpack webpack-loader

Last synced: about 1 month ago
JSON representation

Webpack loader to ignore certain package on build.

Lists

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' }
]
}
};
```