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: 4 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 11 years ago)
- Default Branch: main
- Last Pushed: 2023-03-05T06:25:50.000Z (over 2 years ago)
- Last Synced: 2025-02-17T09:17:15.739Z (5 months ago)
- Topics: dwebp, gulp, image, webp
- Language: JavaScript
- Homepage: https://www.npmjs.org/package/gulp-dwebp
- Size: 833 KB
- Stars: 0
- Watchers: 3
- 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)