Socket
Socket
Sign inDemoInstall

gulp-fontgen

Package Overview
Dependencies
Maintainers
3
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-fontgen

Generator of browser fonts and css from ttf or otf files


Version published
Maintainers
3
Created
Source

gulp-fontgen

NPM version Build Status Coverage Status Dependency Status

gulp-fontgen plugin for gulp

Usage

First, install gulp-fontgen as a development dependency:

npm install --save-dev gulp-fontgen

Then, add it to your gulpfile.js:

var gulp = require('gulp');
var fontgen = require('../gulp-fontgen');

gulp.task('fontgen', function() {
  return gulp.src("./src/*.{ttf,otf}")
    .pipe(fontgen({
      dest: "./dest/"
    }));
});

gulp.task('default', ['fontgen']);

API

gulpFontgen(options)

options.dest

Type: String (Required)

Destination to write all the font files to

All other options for fontfacegen are passed through.

License

MIT License

Keywords

FAQs

Package last updated on 04 Aug 2016

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc