
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
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 184,437 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
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.