Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 562 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 562 Bytes

Plugin for webpack that runs bless over all (generated) css files.

Installation

Install the plugin with npm:

$ npm install --save-dev bless-webpack-plugin

Usage

var blessPlugin = require('bless-webpack-plugin');

{
	plugins : [
		blessPlugin();
	]
}

API

blessPlugin([blessOptions[, pattern]])

  • 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$/.