0.4.0 • Published 9 years ago

exhibit-builder-autoprefixer v0.4.0

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

autoprefixer

Exhibit.js builder plugin

Adds vendor prefixes to CSS files with Autoprefixer.

$ npm install -D exhibit-builder-autoprefixer

NPM version Build Status Dependency Status devDependency Status peerDependency Status

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

0.4.0

9 years ago

0.3.0

9 years ago

0.2.0

9 years ago