akoenig / gulp-svg2png

A gulp plugin for converting SVGs to PNGs.
MIT License
54 stars 34 forks source link

Wrong handling of directories ending with ".svg" #12

Open vladipus opened 9 years ago

vladipus commented 9 years ago

If a directory ends with '.svg' ('example.svg'), the directory with the results of svg2png execution is suffixed with '.png' instead of nothing and the files are suffixed '.svg' instead of '.png'. The files are still in PNG format though.

Sample task code:

gulp.src("input.svg/**/*.svg")
    .pipe(svg2png())
    .pipe(gulp.dest("output.svg"));