gulp-svg2png
TypeScript icon, indicating that this package has built-in type declarations

2.0.2 • Public • Published

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)

Dependencies (4)

Dev Dependencies (5)

Package Sidebar

Install

npm i gulp-svg2png

Weekly Downloads

2,786

Version

2.0.2

License

MIT

Last publish

Collaborators

  • akoenig