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.
- Host: GitHub
- URL: https://github.com/axtgr/do-nothing-loader
- Owner: axtgr
- Created: 2015-10-27T03:28:54.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-27T03:45:26.000Z (over 10 years ago)
- Last Synced: 2025-11-29T22:40:03.310Z (7 months ago)
- Language: JavaScript
- Size: 121 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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'
}
]
}
};
```