Skip to content

Instantly share code, notes, and snippets.

@jxnblk
Created March 4, 2014 20:53
Show Gist options
  • Save jxnblk/9355406 to your computer and use it in GitHub Desktop.
Save jxnblk/9355406 to your computer and use it in GitHub Desktop.
gulp.task('js-sprite', function() {
return gulp.src('./icons/*.svg')
.pipe(concat('js-sprite.svg'))
.pipe(header('<svg xmlns="http://www.w3.org/2000/svg">'))
.pipe(footer('</svg>'))
.pipe(svgmin([{cleanupIDs: false}]))
.pipe(gulp.dest('./sprite'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment