fontmin-wawoff2

woff2 fontmin plugin

Usage no npm install needed!

<script type="module">
  import fontminWawoff2 from 'https://cdn.skypack.dev/fontmin-wawoff2';
</script>

README

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