Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 (over 10 years ago)
- Default Branch: main
- Last Pushed: 2023-03-05T06:25:50.000Z (almost 2 years ago)
- Last Synced: 2024-10-12T23:51:24.405Z (3 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 ![GitHub Actions Status](https://github.com/1000ch/gulp-dwebp/workflows/test/badge.svg?branch=main)
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)