Prefix CSS(evacuated from NSA/Microsoft Github)

Sindre Sorhus 18a27bedc5 5.0.0 6 years ago
.editorconfig 27816c328d Meta tweaks 7 years ago
.gitattributes 7df69baf6c ES2015ify, bump postcss, require Node.js 4 7 years ago
.gitignore 27816c328d Meta tweaks 7 years ago
.npmrc 27816c328d Meta tweaks 7 years ago
.travis.yml 27816c328d Meta tweaks 7 years ago
index.js e954e6e804 Update sourcemap paths to be relative to `file.base` (#92) 6 years ago
license 27816c328d Meta tweaks 7 years ago
package.json 18a27bedc5 5.0.0 6 years ago
readme.md e526a78c1a Meta tweaks 6 years ago
test.js 78286463a1 Upgrade to Autoprefixer 8 (#96) 6 years ago

readme.md

gulp-autoprefixer Build Status

Prefix CSS with Autoprefixer

Issues with the output should be reported on the Autoprefixer issue tracker.

Install

$ npm install --save-dev gulp-autoprefixer

<img src="https://c5.patreon.com/external/logo/become_a_patron_button@2x.png" width="160">

Usage

const gulp = require('gulp');
const autoprefixer = require('gulp-autoprefixer');

gulp.task('default', () =>
	gulp.src('src/app.css')
		.pipe(autoprefixer({
			browsers: ['last 2 versions'],
			cascade: false
		}))
		.pipe(gulp.dest('dist'))
);

API

autoprefixer([options])

options

Type: Object

See the Autoprefixer options.

Source Maps

Use gulp-sourcemaps like this:

const gulp = require('gulp');
const sourcemaps = require('gulp-sourcemaps');
const autoprefixer = require('gulp-autoprefixer');
const concat = require('gulp-concat');

gulp.task('default', () =>
	gulp.src('src/**/*.css')
		.pipe(sourcemaps.init())
		.pipe(autoprefixer())
		.pipe(concat('all.css'))
		.pipe(sourcemaps.write('.'))
		.pipe(gulp.dest('dist'))
);

Tip

If you use other PostCSS based tools, like cssnano, you may want to run them together using gulp-postcss instead of gulp-autoprefixer. It will be faster, as the CSS is parsed only once for all PostCSS based tools, including Autoprefixer.

License

MIT © Sindre Sorhus