Skip to content

Instantly share code, notes, and snippets.

@gustavoquinalha
Created April 27, 2017 15:13
Show Gist options
  • Save gustavoquinalha/a1486476e0f6cabbcdb50ece4bb08480 to your computer and use it in GitHub Desktop.
Save gustavoquinalha/a1486476e0f6cabbcdb50ece4bb08480 to your computer and use it in GitHub Desktop.
gulp.task('prefix', () =>
gulp.src('css/all.css')
.pipe(autoprefixer({
browsers: ['last 2 versions'],
cascade: false
}))
.pipe(gulp.dest('css/test'))
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment