Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
gulp-svgicons2svgfont
Advanced tools
Create a SVG font from several SVG icons
You can test this library with the frontend generator.
First, install gulp-svgicons2svgfont
as a development dependency:
npm install --save-dev gulp-svgicons2svgfont
Then, add it to your gulpfile.js
:
import svgicons2svgfont from 'gulp-svgicons2svgfont';
gulp.task('Iconfont', function () {
svgicons2svgfont(['assets/icons/*.svg'], {
fontName: 'myfont',
})
.on('glyphs', function (glyphs) {
console.log(glyphs);
// Here generate CSS/SCSS for your glyphs ...
})
.pipe(gulp.dest('www/font/'));
});
Every icon must be prefixed with it's codepoint. The prependUnicode
option
allows to do it automatically. Then, in your own CSS, you just have to use the
corresponding codepoint to display your icon. See this
sample less mixin
for a real world usage.
The plugin stream emits a codepoints
event letting you do whatever you want
with them.
Please report icons to font issues to the svgicons2svgfont repository on wich this plugin depends. Note this Gulp plugin is strictly equivalent to the above module CLI interface.
Type: Boolean
Default value: false
Allow to prepend unicode codepoints to icon file names in order to always keep the same codepoints accross each run.
Type: String
Default value: options.fontName
Allows to specify a fileName if needed it to be different from the fontName, eg. do not want to have spaces.
Type: integer
Default value: 0xEA01
Starting codepoint used for the generated glyphs. Defaults to a region within the Unicode private use area which is currently unused. See this blog post for further details and additional suggestions regarding accessibility of icon fonts.
Type: Function
Default value:
require('svgicons2svgfont/src/metadata')(options)
Allows to define your own logic to attach codepoints to input files.
The svgfont2svgicons options are also available:
You may look after a full Gulp web font workflow, see gulp-iconfont fot that matter.
Feel free to push your code if you agree with publishing under the MIT license.
FAQs
Create a SVG font from several SVG icons
We found that gulp-svgicons2svgfont demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.