exhibit-builder-autoprefixer
v0.4.0
Published
Adds vendor prefixes to CSS files with Autoprefixer
Downloads
5
Readme
autoprefixer
Exhibit.js builder plugin
Adds vendor prefixes to CSS files with Autoprefixer.
$ npm install -D exhibit-builder-autoprefixer
Usage
Can be configured with an options object:
.use('autoprefixer', {
browsers: ['> 1%', 'IE 7'],
cascade: false
})
...or just the browsers
option alone:
exhibit()
.use('autoprefixer', ['> 1%', 'IE 7'])
.build('app', 'dist');
Options
You may set any of the usual Autoprefixer options.
Additional options
include
(string/array/function) — default:**/*.css
Which files to process. Follows Exhibit’s glob convention.
License
MIT