Plugin for webpack that runs bless over all (generated) css files.
Install the plugin with npm:
$ npm install --save-dev bless-webpack-pluginvar blessPlugin = require('bless-webpack-plugin');
{
plugins : [
blessPlugin();
]
}blessOptionsis an options object for bless. It will be passed directly to it.patterna regular expression to find assets that should be transformed with bless. Default:/\.css$/.outputFilenamea filename for the blessed css files. If set, the original (unblessed) files will also be emitted. The following variables can be used:[filebase]The base name of the asset, without path or extension[file]The full name of the asset, including path and extension