somascope
1/1/2016 - 12:45 AM

Gulp with autoprefixer task

Gulp with autoprefixer task

var gulp = require('gulp'),
    autoprefixer = require('gulp-autoprefixer');

gulp.task('styles', function() {
    gulp.src('css/styles.css')
        .pipe(autoprefixer())
        .pipe(gulp.dest('build'));
});

gulp.task('watch', function() {
    gulp.watch('css/styles.css', ['styles']);
});