junmer / fontmin-wawoff2

woff2 fontmin plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fontmin-wawoff2

Build Status NPM version Downloads Dependencies

wawoff2 fontmin plugin

Install

$ npm install --save fontmin-wawoff2

Usage

Fontmin convert font.ttf to font.woff2 as https://www.w3.org/TR/2018/REC-WOFF2-20180301/

var Fontmin = require('fontmin');
var wawoff2 = require('fontmin-wawoff2');

var fontmin = new Fontmin()
    .src('fonts/*.ttf')
    .use(Fontmin.glyph({text: 'hello world'}))
    .use(wawoff2())
    .dest('build/fonts');

fontmin.run(function (err, files) {
    if (err) {
        throw err;
    }

    console.log('Files woff2 successfully!');
});

Related

About

woff2 fontmin plugin

License:MIT License


Languages

Language:JavaScript 100.0%