0.1.0 • Published 6 years ago

only-web-loader v0.1.0

Weekly downloads
146
License
-
Repository
github
Last release
6 years ago

only-web-loader

Webpack loader to ignore certain package on build when the target is not web.

Created for fix this issue https://github.com/webpack-contrib/mini-css-extract-plugin/issues/73

Install

$ npm install --save-dev only-web-loader

Usage (Ignoring all .css when the target is not web)

  • In webpack.config.js
module.exports = {
  // other configurations
  module: {
    loaders: [
      { 
        test: /\.css$/, 
        use: [
          'only-web-loader',
          MiniCssExtractPlugin.loader,
          'css-loader',
          //...
        ]
      }
    ]
  }
};