Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

Download ZIP

Optimize PNG, JPG, GIF, SVG images with gulp task.

branch: master

v0.4.8

latest commit 3bfa800b16
Shogo Sensui authored
lib add jpegtran
test update
.gitignore initial commit
.travis.yml configure email notification off
index.js add mozjpeg & brush up
package.json v0.4.8
readme.md update

readme.md

gulp-image

About

Optimize PNG, JPEG, GIF, SVG images with gulp task.

Build Status NPM version Dependency Status devDependency Status Analytics

Install

$ npm install --save-dev gulp-image

Usage

This is an example of gulpfile.js.

var gulp = require('gulp');
var image = require('gulp-image');

gulp.task('image', function () {
  gulp.src('./fixtures/*')
    .pipe(image())
    .pipe(gulp.dest('./dest'));
});

gulp.task('default', ['image']);

License

MIT

Something went wrong with that request. Please try again.