Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/uskov-anton/mixer-webpack-plugin
Mixer plugin for Webpack 2
https://github.com/uskov-anton/mixer-webpack-plugin
css-loader css-modules extract-text-webpack-plugin html-webpack-plugin mixer-webpack-plugin pug pug-loader webpack webpack2
Last synced: about 9 hours ago
JSON representation
Mixer plugin for Webpack 2
- Host: GitHub
- URL: https://github.com/uskov-anton/mixer-webpack-plugin
- Owner: uskov-anton
- License: mit
- Created: 2017-02-08T20:38:19.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-01-06T15:17:55.000Z (almost 6 years ago)
- Last Synced: 2024-10-18T16:21:26.946Z (26 days ago)
- Topics: css-loader, css-modules, extract-text-webpack-plugin, html-webpack-plugin, mixer-webpack-plugin, pug, pug-loader, webpack, webpack2
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mixer Webpack Plugin
[![npm](https://img.shields.io/npm/v/npm.svg)](https://www.npmjs.com/package/mixer-webpack-plugin)
[![node](https://img.shields.io/node/v/gh-badges.svg)](https://nodejs.org/)
[![license](https://img.shields.io/github/license/mashape/apistatus.svg)](LICENSE)## Installation
```bash
$ npm install mixer-webpack-plugin --save-dev
```## Usage
```js
import MixerPlugin from 'mixer-webpack-plugin';
import HtmlPlugin from 'html-webpack-plugin';
import ExtractTextPlugin from 'extract-text-webpack-plugin';export default {
// ...
plugins: [
MixerPlugin(
new HtmlPlugin({ /* options */ }), // target
new ExtractTextPlugin({ /* options */ }), // mixin
// other mixins...
),
// ...
]
};
```[Full example](https://github.com/uskov-anton/mixer-webpack-plugin-example)
## Limitations
- Webpack 2## License
This project is licensed under [MIT](LICENSE).