
Security News
npm v12 Ships With Install Scripts Off by Default, Begins Deprecating 2FA-Bypass Tokens
npm v12 is generally available, turning install scripts off by default and beginning the deprecation of 2FA-bypass publishing tokens.
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 172,207 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.

Security News
npm v12 is generally available, turning install scripts off by default and beginning the deprecation of 2FA-bypass publishing tokens.

Research
/Security News
Socket tracks the activity as Operation “Muck and Load”: a threat actor uses commit-farming workflows, public dead drops, and protected archives to stage Windows RAT and infostealer malware.

Security News
pnpm 11.10 hardens registry auth to block token redirection, tightens pack-app and deploy, and makes the Rust port (v12) installable.