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

https://github.com/axtgr/do-nothing-loader

A webpack loader that just returns the module doing nothing to it.
https://github.com/axtgr/do-nothing-loader

Last synced: 5 days ago
JSON representation

A webpack loader that just returns the module doing nothing to it.

Awesome Lists containing this project

README

          

# do-nothing-loader

A [webpack](http://webpack.github.io/) loader that just returns the module doing nothing to it.

## Install

`npm install --save-dev do-nothing-loader`

## Usage

```javascript
// webpack.config.js

module.exports = {
...
module: {
loaders: [
{
test: /\.js$/,
loader: 'do-nothing'
}
]
}
};
```