gulp-cwebp

Convert JPG and PNG images to WebP with gulp task.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
gulp-cwebp
694.0.24 years ago10 years agoMinified + gzip package size for gulp-cwebp in KB

Readme

gulp-cwebp Build Status
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']);

License

MIT © Shogo Sensui