Socket
Socket
Sign inDemoInstall

gulp-svg2png

Package Overview
Dependencies
4
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-svg2png


Version published
Weekly downloads
2.5K
decreased by-5.89%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

gulp-svg2png Build Status

A gulp plugin for converting SVGs to PNGs.

Usage

First, install gulp-svg2png as a development dependency:

npm install --save-dev gulp-svg2png

Then, add it to your gulpfile.js:

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

gulp.task('svg2png', function () {
    gulp.src('./specs/assets/**/*.svg')
        .pipe(svg2png())
        .pipe(gulp.dest('./build'));
});

Arguments

svg2png([options, verbose, concurrency])

options

The resizing options which will be passed directly to svg2png.

verbose

Logs progress information (optional; default=true)

concurrency

Limit the amount of concurrent tasks processed at one time. (optional; default=null)

Development

TypeScript build

npm run build

Changelog

See HISTORY.md

Author

Copyright 2014-2016, André König (andre.koenig@posteo.de)

Keywords

FAQs

Last updated on 23 Sep 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc