
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
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.
FAQs
Prefix CSS
The npm package gulp-autoprefixer receives a total of 191,584 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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.