JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4197
  • Score
    100M100P100Q127195F
  • License MIT

Optimizing SVG vector graphics files with Gulp

Package Exports

  • gulp-svgo

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-svgo) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

gulp-svgo

NPM Version NPM Downloads Build Status

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.