Bachir Soussi Chiadmi cefd1c2ad0 updated sys and created publi 6 tahun lalu
..
index.js 0611418f7a added whole system from ola4doc 6 tahun lalu
license 0611418f7a added whole system from ola4doc 6 tahun lalu
package.json cefd1c2ad0 updated sys and created publi 6 tahun lalu
readme.md 0611418f7a added whole system from ola4doc 6 tahun lalu

readme.md

gulp-autoprefixer Build Status

Prefix CSS with Autoprefixer

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


🔥 Want to strengthen your core JavaScript skills and master ES6?
I would personally recommend this awesome ES6 course by Wes Bos.


Install

$ npm install --save-dev gulp-autoprefixer

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

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

You might want to use Autoprefixer as a PostCSS plugin if you use other PostCSS plugins in your build process.

License

MIT © Sindre Sorhus