/multi-loader

A loader that splits a module into multiple modules loaded with different loaders.

Primary LanguageJavaScriptMIT LicenseMIT

npm deps chat

Multi-Loader

This loader requires a module multiple times, each time loaded with a different loader. Like in a multi entry point the exports of the last item are exported.

Install

npm i multi-loader --save

Usage

var multi = require("multi-loader");
{
	module: {
		loaders: [
			{
				test: /\.css$/,
				// Add CSS to the DOM
				// and
				// Return the raw content
				loader: multi(
					"style-loader!css-loader!autoprefixer-loader",
					"raw-loader"
				)
			}
		]
	}
}

Maintainers


Juho Vepsäläinen

Joshua Wiens

Kees Kluskens

Sean Larkin