gulp-iconeer
v0.1.33
Published
A fontkit packer for svg icons
Downloads
3
Readme
gulp-iconeer
Combines multiple SVG files containing <glyph>´s to one svg file.
Usage
Install:
npm install gulp-iconeer
Usage example:
const gulp = require("gulp");
const iconeer = require("gulp-iconeer");
gulp.task("build-icons", function() {
gulp.src("./icons/*.svg")
.pipe(iconeer({
id: "MyAwesomeFont",
family: "My Awesome Font",
prefix: "awesome",
copyright: "Frank Wolbring",
timestamp: (new Date()).getTime() / 1000,
version: "1.0"
}))
.pipe(gulp.dest("./bundle"));
});