npm.io
0.1.2 • Published 9 years ago

ignore-loader

Licence
Version
0.1.2
Deps
0
Vulns
0
Weekly
0
Stars
96

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
module.exports = {
  // other configurations
  module: {
    loaders: [
      { test: /\.css$/, loader: 'ignore-loader' }
    ]
  }
};