npm.io
1.1.0 • Published 10 years ago

gulp-webp-css

Licence
ISC
Version
1.1.0
Deps
3
Vulns
0
Weekly
0

gulp-webp-css

Example

// Input
.banner{
    background: url(/img/bannerbg.jpg) no-repeat center;
}

// Output
.banner{
    background: url(/img/bannerbg.jpg) no-repeat center;
}
@supports (-webkit-appearance:none){
    .banner {
        background-image: url(/img/bannerbg.webp);
    }
}

Install

npm i --save-dev gulp-webp-css

Usage

var webpCss = require('gulp-webp-css');

gulp.task('css', function () {
    gulp.src('./assets/css/*.css')
        .pipe(webpCss()) // or .pipe(webpCss(['.jpg','.jpeg']))
        .pipe(gulp.dest('./public/css/'))
});