1.0.2 • Published 4 years ago

gulp-dwebp v1.0.2

Weekly downloads
10
License
MIT
Repository
github
Last release
4 years ago

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

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.1.4

9 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago