gulp-tinypng icon indicating copy to clipboard operation
gulp-tinypng copied to clipboard

gulp plugin to compress png images using tinypng api

Results 9 gulp-tinypng issues
Sort by recently updated
recently updated
newest added

As you can see in the image below, I got a message from the terminal about "outdated" sub-modules: ``` + [email protected] added 115 packages from 54 contributors and audited 14225...

here is your npm api **var gulp = require('gulp'); var imagemin = require('gulp-tinypng'); gulp.task('tinypng', function () { gulp.src('src/image.png') .pipe(tingpng('API_KEY')) .pipe(gulp.dest('dist')); });** I change it to this, and it works. **var...

[14:19:24] Starting 'tinypng'... [14:19:27] [error] : gulp-tinypng - Credentials are invalid [14:20:27] Starting 'tinypng'... [14:21:44] [error] : gulp-tinypng - Upload failed to complete

Hi ;) At many places, even in the console, I saw your plugin called `gulp-tingpng`. Can you replace/update that? Thanks in advance

It doesn't seem to be `require`-d outside of tests. Perhaps you should move it to [devDependencies](https://docs.npmjs.com/files/package.json#devdependencies) and/or [peerDependencies](https://docs.npmjs.com/files/package.json#peerdependencies).

Just a small typo in the log

The plugin is outputting all images to a folder called `.gulp` instead of what was declared on the gulp task. Would also be nice if the plugin could preserve the...