Skip to content

Instantly share code, notes, and snippets.

@spemer
Last active January 22, 2018 10:23
Show Gist options
  • Save spemer/3324e7e24fa47d995c3c636cbeb835f7 to your computer and use it in GitHub Desktop.
Save spemer/3324e7e24fa47d995c3c636cbeb835f7 to your computer and use it in GitHub Desktop.
const autoprefixer = require('gulp-autoprefixer');
gulp.task('prefix', () =>
gulp.src('styleTest.css')
.pipe(autoprefixer({
browsers: ['last 99 versions'],
cascade: false
}))
.pipe(gulp.dest('style'))
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment