1.0.0 • Published 15 days ago

gulp-tinify-and-convert v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
15 days ago

gulp-tinify

Update of Josh Broton's gulp-tinify package
Minify compatible files using TinyPNG's API

The API key is meant to be a local variable named TINIFY_KEY

Usage

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

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

You must have a TinyPNG Developer API Key for this to work.