Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

gulp-ttf2woff

nfroidure106.5kMIT2.0.0TypeScript support: included

Create a WOFF font from a TTF one

gulpplugin, gulp, gulp-plugin, font, woff, ttf, converter

readme

gulp-ttf2woff

Create a WOFF font from a TTF one

GitHub license

Usage

First, install gulp-ttf2woff as a development dependency:

npm install --save-dev gulp-ttf2woff

Then, add it to your gulpfile.js:

import ttf2woff from 'gulp-ttf2woff';

gulp.task('ttf2woff', () => {
  gulp.src(['fonts/*.ttf'], {
      encoding: false, // Important!
      removeBOM: false,
    })
    .pipe(ttf2woff())
    .pipe(gulp.dest('fonts/'));
});

API

ttf2woff(options)

options.ignoreExt

Type: Boolean Default value: false

Set to true to also convert files that doesn't have the .ttf extension.

options.clone

Type: Boolean Default value: false

Set to true to clone the file before converting him so that it will output the original file too.

Note

You may look after a full Gulp web font workflow, see gulp-iconfont fot that matter.

Stats

NPM NPM

Contributing / Issues

Please submit TTF to WOFF related issues to the ttf2woff project on wich gulp-ttf2woff is built.

This repository issues is only for gulp and gulp tasks related issues.

You may want to contribute to this project, pull requests are welcome if you accept to publish under the MIT licence.

Authors

License

MIT

changelog

2.0.0 (2024-07-30)

chore

  • dependencies: update dependencies (c5f8f30), closes #6 #8

BREAKING CHANGES

  • dependencies: Now requires ESM and Node 20.11+