
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
gulp-autoprefixer
Advanced tools
Prefix CSS with Autoprefixer
Issues with the output should be reported on the Autoprefixer issue tracker.
npm install --save-dev gulp-autoprefixer
import gulp from 'gulp';
import autoprefixer from 'gulp-autoprefixer';
export default () => (
gulp.src('src/app.css')
.pipe(autoprefixer({
cascade: false
}))
.pipe(gulp.dest('dist'))
);
Type: object
See the Autoprefixer options.
Use gulp-sourcemaps like this:
import gulp from 'gulp';
import sourcemaps from 'gulp-sourcemaps';
import concat from 'gulp-concat';
import autoprefixer from 'gulp-autoprefixer';
export default () => (
gulp.src('src/**/*.css')
.pipe(sourcemaps.init())
.pipe(autoprefixer())
.pipe(concat('all.css'))
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest('dist'))
);
If you use other PostCSS based tools, like cssnano, you may want to run them together using gulp-postcss instead of gulp-autoprefixer. It will be faster, as the CSS is parsed only once for all PostCSS based tools, including Autoprefixer.
PostCSS is a tool for transforming CSS with JavaScript plugins. It is more versatile than gulp-autoprefixer as it can be used for a wide range of CSS transformations, not just autoprefixing. Autoprefixer itself is a PostCSS plugin, so using PostCSS directly allows for more customization and the use of additional plugins.
Autoprefixer is the core tool that gulp-autoprefixer uses under the hood. It can be used directly with PostCSS or other build tools. Using Autoprefixer directly provides more flexibility and control over the configuration and integration with other PostCSS plugins.
FAQs
Prefix CSS
The npm package gulp-autoprefixer receives a total of 214,378 weekly downloads. As such, gulp-autoprefixer popularity was classified as popular.
We found that gulp-autoprefixer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.