Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

gulp-smushit

heldr1.5kMIT1.2.0

Gulp plugin to optimize PNG and JPG using reSmush.it

gulpplugin, smushit, png, jpg, gif, image optimizer, compress image, image, web performance, webperf

readme

gulp-smushit Build Status

Gulp plugin to optimize PNG and JPG using reSmush.it. Made on top of smosh.

reSmush.it is a FREE alternative to Yahoo Smush.it (deprecated on March 2015). This tool provides a online way to optimize pictures size via a documented webservice.

Read more about reSmush.it

Prefer Grunt? grunt-smushit

Install

$ npm install --save-dev gulp-smushit

Usage

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

gulp.task('default', function () {
    return gulp.src('src/**/*.{jpg,png}')
        .pipe(smushit())
        .pipe(gulp.dest('dist'));
});

API

smushit(options)

options

verbose

Type: boolean
Default: false

Show compress rate stats

License

MIT © Helder Santana