A webpack plugin for bless CSS
npm install bless-css-webpack-plugin-extended> A webpack plugin for bless CSS






Install the plugin with yarn:
```
yarn add bless-css-webpack-plugin --dev
Install the plugin with npm:
``
npm install --save-dev bless-css-webpack-plugin
javascript
const BlessCSSWebpackPlugin = require('bless-css-webpack-plugin');// in your webpack config
{
plugins: [
new BlessCSSWebpackPlugin(options)
]
}
`
$3
*
files - An array of files that you want blessed: ['ie', 'other-style-sheet']. Default false, all files will be blessed if they're large enough.
* minimize - set to true to enable minification with CleanCSS. NOTE: if sourceMaps are turned on this will disable minimize! Default false.
* sourceMap - set to true to enable sourcemaps. Default false.
* addImports - set to true to inject @import rules for generated files. Default false.Differences from bless-webpack-plugin
* Works with the html webpack plugin
* Has tests
* Uses bless 4.0
* Works with sourcemapsCredits
* The webpack source code and readme for how to write a plugin
* The original bless-webpack-plugin` plugin