Plugin for webpack that runs bless over all (generated) css files.
Install the plugin with npm:
$ npm install --save-dev bless-webpack-plugin
var blessPlugin = require('bless-webpack-plugin');
{
plugins : [
blessPlugin();
]
}
blessOptions
is an options object for bless. It will be passed directly to it.pattern
a regular expression to find assets that should be transformed with bless. Default:/\.css$/
.