gulp-dwebp

1.0.2 • Public • Published

gulp-dwebp Build Status

Convert WebP images to PNG with gulp task.

Install

$ npm install --save-dev gulp-dwebp

Usage

This is gulpfile.js sample.

const gulp = require('gulp');
const dwebp = require('gulp-dwebp');
 
gulp.task('dwebp', function () {
  gulp.src('./fixtures/*')
    .pipe(dwebp())
    .pipe(gulp.dest('./dest/'));
});
 
gulp.task('default', ['dwebp']);

License

MIT © Shogo Sensui

Readme

Keywords

none

Package Sidebar

Install

npm i gulp-dwebp

Weekly Downloads

0

Version

1.0.2

License

MIT

Unpacked Size

22.8 kB

Total Files

7

Last publish

Collaborators

  • 1000ch