
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
gulp-web-images-css
Advanced tools
Gulp plugin to use webp & avif in CSS. Fork on the plugin gulp-avif-css.
This is a modified version of the plugin gulp-avif-css. Generates additional expressions with
.webp
&.avif
classes and appropriate extension.
Install gulp-web-images-css
as a development dependency:
npm i -D gulp-web-images-css
Type: object
Type: string
Default: all
Possible values:
Type: boolean
Default: true
Make only local paths.
Type: boolean
Default: true
Do not distinguish between lowercase and uppercase letters in extensions
Type: string
Default: avif
Sets a class for AVIF-picture
Type: string
Default: webp
Sets a class for Webp-picture
Type: array
Default: ['png', 'jpg', 'jpeg']
Expansion subject to processing.
Add it to your gulpfile.js
const gulp = require("gulp");
const webImagesCSS = require("gulp-web-images-css");
gulp.src("./src/css/*.css").pipe(webImagesCSS()).pipe(gulp.dest("./dist"));
or
const gulp = require("gulp");
const webImagesCSS = require("gulp-web-images-css");
gulp
.src("./src/css/*.css")
.pipe(webImagesCSS({mode: "all"}))
.pipe(gulp.dest("./dist"));
Include special plugin adds .avif
and .webp
classes to body (if it supports) into your JavaScript file (add it into head tag)
import "gulp-web-images-css/plugin";
.box {
background-image: url("image.png");
}
.box {
background-image: url("image.png");
}
.webp .box {
background-image: url("image.webp");
}
.avif .box {
background-image: url("image.avif");
}
FAQs
Gulp plugin to use webp & avif in CSS. Fork on the plugin gulp-avif-css.
The npm package gulp-web-images-css receives a total of 13 weekly downloads. As such, gulp-web-images-css popularity was classified as not popular.
We found that gulp-web-images-css demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.