Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
gulp-iconfont
Advanced tools
Create a SVG/TTF/EOT/WOFF font from several SVG icons with Gulp.
You can test this library with the frontend generator.
First, install gulp-iconfont
as a development dependency:
npm install --save-dev gulp-iconfont
Then, add it to your gulpfile.js
:
var iconfont = require('gulp-iconfont');
gulp.task('Iconfont', function(){
return gulp.src(['assets/icons/*.svg'])
.pipe(iconfont({
fontName: 'myfont', // required
appendUnicode: true // recommended option
}))
.on('glyphs', function(glyphs, options) {
// CSS templating, e.g.
console.log(glyphs, options);
})
.pipe(gulp.dest('www/fonts/'));
});
gulp-iconfont
bundles several plugins to bring a simpler API
(gulp-svgicons2svgfont
, gulp-svg2tff
, gulp-ttf2eot
, gulp-ttf2woff
)
for more flexibility, feel free to use them separately.
If some font glyphs aren't converted properly you should append the
normalize:true
option and a fontHeight
greater than 1000
(fontHeight: 1001
).
To use this font in your CSS, you could add a mixin like in this
real world example.
You can also generate your CSS automatically with
gulp-iconfont-css
.
It's also easy to make a CSS template by yourself. Like
this example,
gulp-consolidate
is useful to handling
such a template. The template is outdated, change every occurrence of glyph.codepoint.toString(16).toUpperCase()
to glyph.unicode[0].charCodeAt(0).toString(16).toUpperCase()
, otherwise it will not work.
var gulp = require('gulp');
var iconfont = require('gulp-iconfont');
var consolidate = require('gulp-consolidate');
gulp.task('Iconfont', function(){
return gulp.src(['assets/icons/*.svg'])
.pipe(iconfont({ fontName: 'myfont' }))
.on('glyphs', function(glyphs, options) {
gulp.src('templates/myfont.css')
.pipe(consolidate('lodash', {
glyphs: glyphs,
fontName: 'myfont',
fontPath: '../fonts/',
className: 's'
}))
.pipe(gulp.dest('www/css/'));
})
.pipe(gulp.dest('www/fonts/'));
});
Add issues to the right repos:
#### options.autohint
Type: Boolean
Default value: false
If ttfautohint is installed on your system, you may want to auto hint your fonts. Beware that this is an experimental and untested feature (beware to use at least the 0.93 version).
#### options.spawnWoff2
Type: Boolean
Default value: false
You can use the woff2 binaries if you have the woff2_compress tool installed in your system and in your env path instead of the slower Node converter.
Note that i had to clone the project and you'll have to use this fork until it gets merged or it allows
#### options.svg
Type: Boolean
Default value: false
Since SVG fonts are deprecated in some browsers, they are disabled per default. You may want to continue generating them.
The svgicons2svgfont are available:
So are the gulp-svgicons2svgfont:
And the gulp-svg2ttf:
Beware that your SVG icons must have a high enough height. 500 is a minimum. If
you do not want to resize them, you can try to combine the fontHeight
and
the normalize
option to get them in a correct size.
Degroup every shapes (Ctrl+Shift+G), convert to pathes (Ctrl+Maj+C) and merge them (Ctrl++). Then save your SVG, prefer 'simple SVG' file type.
Save your file as SVG with the following settings:
Leave the rest unchecked.
More in-depth information: http://www.adobe.com/inspire/2013/09/exporting-svg-illustrator.html
Sketch is a relatively new drawing tool on Mac. With help of Sketch Tools and gulp-sketch, you can directly create fonts from your Sketch file. No need to export intermediate SVGs.
Here is a sample repo "Symbols for Sketch".
$ cd path/to/dir
$ npm install
$ gulp symbols
Feel free to push your code if you agree with publishing under the MIT license.
FAQs
Create icon fonts from several SVG icons
The npm package gulp-iconfont receives a total of 12,768 weekly downloads. As such, gulp-iconfont popularity was classified as popular.
We found that gulp-iconfont demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.