gulp-cwebp
v4.0.2
Published
Convert JPG and PNG images to WebP with gulp task.
Downloads
2,515
Readme
gulp-cwebp
Convert JPG and PNG images to WebP with gulp task.
Install
$ npm install --save-dev gulp-cwebp
Usage
This is gulpfile.js
sample.
const gulp = require('gulp');
const cwebp = require('gulp-cwebp');
gulp.task('cwebp', function () {
gulp.src('./fixtures/*')
.pipe(cwebp())
.pipe(gulp.dest('./dest/'));
});
gulp.task('default', ['cwebp']);