gulp-smushit
gulp-smushit copied to clipboard
Gulp plugin to optimize PNG and JPG using reSmush.it.
Your FOSSA integration was successful! Attached in this PR is a badge and license report to track scan status in your README. Below are docs for integrating FOSSA license checks...
``` gulp.task('copy-assets:datatables.net:images', function() { return gulp.src(nodeSource + "/datatables/media/images/*.png") .pipe(smushit()) .pipe(gulp.dest(assetRoot + "/images/")); }); ``` When running the above gulp task I'm getting an error (shown below)... ``` $ gulp copy-assets:datatables.net:images...
Não estou conseguindo usar o gulp-smushit. Configurei conforme o exemplo mas ele não converte as imagens. E não apresenta nenhum erro. var gulp = require('gulp'); var smushit = require('gulp-smushit'); gulp.task('images',...