Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mortenson/emit-file-loader

A Webpack loader that emits a file during the loader chain.
https://github.com/mortenson/emit-file-loader

Last synced: about 1 month ago
JSON representation

A Webpack loader that emits a file during the loader chain.

Awesome Lists containing this project

README

        

# emit-file-loader

A Webpack loader that emits a file during the loader chain.

This is useful when distributing CSS or template files for others to use.

To use this loader, add it to an existing chain like so:

```
{
test: /\.scss$/,
use: [
{ loader: 'css-loader' },
{ loader: 'emit-file-loader?output=dist/styles/[name].css' },
{ loader: 'sass-loader' }
],
}
```

The `output` query parameter uses [name interpolation](https://github.com/webpack/loader-utils#interpolatename)
to determine where the raw content will be saved by the loader.

# Installation

```
npm install --save-dev emit-file-loader
```