How to use the gulp-autoprefixer.apply function in gulp-autoprefixer

To help you get started, we’ve selected a few gulp-autoprefixer examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github PatrickJS / koa-angular-seed / Gulpfile.js View on Github external
gulp.task('styles', function(cb) {
  return gulp.src(config.paths.styles)
    .pipe(stylus({ conpress: true }))
    .pipe(prefix.apply(prefix, config.build.prefix))
    .pipe(concat(config.build.styles))
    .pipe(gulp.dest(config.build.path))
    .pipe(refresh(server));
});

gulp-autoprefixer

Prefix CSS

MIT
Latest version published 6 months ago

Package Health Score

69 / 100
Full package analysis

Popular gulp-autoprefixer functions