gulp-svgo
v2.2.1
Published
Optimizing SVG vector graphics files with Gulp
Downloads
30,408
Maintainers
Readme
gulp-svgo
Optimizing SVG vector graphics files with Gulp
A thin wrapper around svgo for Gulp. Will pass-through any non-svg files unaltered so you can use in conjuction with other image optimzation tools if you don't want a separate task for different file formats.
Install
$ npm install --save-dev gulp-svgo
Usage
const gulp = require('gulp');
const svgo = require('gulp-svgo');
gulp.task('images', () => {
return gulp.src('src/img/*')
.pipe(svgo())
.pipe(gulp.dest('dest/img'));
});
Options
Options are passed directly to svgo instance.