blank-loader
v0.1.0
Published
Webpack loader for returning blank contents.
Downloads
27
Readme
blank-loader
Use Case
When your want to strip out the contents of specific files from your bundle file.
Install
$ npm install -D blank-loader
Usage
{
module: {
loaders: [
// strip css out
{test: /\.css$/, loader: 'blank'}
]
}
}
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D