https://github.com/1000ch/gulp-dwebp
Convert WebP images to PNG with gulp task.
https://github.com/1000ch/gulp-dwebp
dwebp gulp image webp
Last synced: about 2 months ago
JSON representation
Convert WebP images to PNG with gulp task.
- Host: GitHub
- URL: https://github.com/1000ch/gulp-dwebp
- Owner: 1000ch
- Created: 2014-06-06T23:33:01.000Z (about 12 years ago)
- Default Branch: main
- Last Pushed: 2023-03-05T06:25:50.000Z (over 3 years ago)
- Last Synced: 2025-09-16T05:36:11.393Z (9 months ago)
- Topics: dwebp, gulp, image, webp
- Language: JavaScript
- Homepage: https://www.npmjs.org/package/gulp-dwebp
- Size: 833 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# gulp-dwebp 
Convert WebP images to PNG with gulp task.
## Install
```sh
$ npm install --save-dev gulp-dwebp
```
## Usage
This is `gulpfile.js` sample.
```js
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](https://1000ch.mit-license.org) © [Shogo Sensui](https://github.com/1000ch)