0.1.4 • Published 7 years ago

gulp-remove-svg-tag v0.1.4

Weekly downloads
34
License
MIT
Repository
github
Last release
7 years ago

gulp-remove-svg-tag

Build Status

A gulp plugin for removing file elements by tag name.

Install

$ npm install --save-dev gulp-remove-svg-tag

Usage

let grst = require('gulp-remove-svg-tag');

gulp.task('svg_opt', () => {

    return gulp.src('src/svg/*')
        .pipe(grst({
            tagNames: ['style', 'script']
        }))
        .pipe(gulp.dest('dest/svg'));
});

Options

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago