All Projects → cherrry → Ignore Loader

cherrry / Ignore Loader

Licence: mit
Webpack loader to ignore certain package on build.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Ignore Loader

Inline Style Loader
inline style loader for webpack
Stars: ✭ 16 (-81.18%)
Mutual labels:  webpack, webpack-loader
Flow Bin Loader
webpack loader for Flow
Stars: ✭ 11 (-87.06%)
Mutual labels:  webpack, webpack-loader
Node Addon Loader
A loader for node native addons
Stars: ✭ 17 (-80%)
Mutual labels:  webpack, webpack-loader
Css Loader
CSS Loader
Stars: ✭ 4,067 (+4684.71%)
Mutual labels:  webpack, webpack-loader
Bootstrap Loader
Load Bootstrap styles and scripts in your Webpack bundle
Stars: ✭ 1,038 (+1121.18%)
Mutual labels:  webpack, webpack-loader
Comlink Loader
Webpack loader to offload modules to Worker threads seamlessly using Comlink.
Stars: ✭ 535 (+529.41%)
Mutual labels:  webpack, webpack-loader
Stylefmt Loader
Webpack-loader. Fixes stylelint issues automatically while bundling with Webpack.
Stars: ✭ 24 (-71.76%)
Mutual labels:  webpack, webpack-loader
Vue Template Loader
Vue.js 2.0 template loader for webpack
Stars: ✭ 253 (+197.65%)
Mutual labels:  webpack, webpack-loader
Graphql Import Loader
Webpack loader for `graphql-import`
Stars: ✭ 84 (-1.18%)
Mutual labels:  webpack, webpack-loader
Svgr
Transform SVGs into React components 🦁
Stars: ✭ 8,263 (+9621.18%)
Mutual labels:  webpack, webpack-loader
Sass Loader
Compiles Sass to CSS
Stars: ✭ 3,718 (+4274.12%)
Mutual labels:  webpack, webpack-loader
Sketch Loader
Webpack loader for Sketch (+43) files
Stars: ✭ 69 (-18.82%)
Mutual labels:  webpack, webpack-loader
Markdown Loader
markdown loader for webpack
Stars: ✭ 335 (+294.12%)
Mutual labels:  webpack, webpack-loader
Wasm Loader
✨ WASM webpack loader
Stars: ✭ 604 (+610.59%)
Mutual labels:  webpack, webpack-loader
Extract Loader
webpack loader to extract HTML and CSS from the bundle
Stars: ✭ 297 (+249.41%)
Mutual labels:  webpack, webpack-loader
Nunjucks Isomorphic Loader
Nunjucks loader for webpack, supporting both javascript templating and generating static HTML files through the HtmlWebpackPlugin.
Stars: ✭ 17 (-80%)
Mutual labels:  webpack, webpack-loader
String Replace Loader
Replace loader for Webpack
Stars: ✭ 205 (+141.18%)
Mutual labels:  webpack, webpack-loader
One Loader
Single-file components for React
Stars: ✭ 233 (+174.12%)
Mutual labels:  webpack, webpack-loader
Thread Loader
Runs the following loaders in a worker pool
Stars: ✭ 945 (+1011.76%)
Mutual labels:  webpack, webpack-loader
Ng Router Loader
Webpack loader for NgModule lazy loading using the angular router
Stars: ✭ 47 (-44.71%)
Mutual labels:  webpack, webpack-loader

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' }
    ]
  }
};
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].