0.1.4 • Published 8 years ago

gulp-remove-svg-tag v0.1.4

Weekly downloads
34
License
MIT
Repository
github
Last release
8 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

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago