1.0.1 • Published 4 years ago

gulp-ttftowoff2 v1.0.1

Weekly downloads
18
License
MIT
Repository
github
Last release
4 years ago

gulp-ttf-to-woff2

Gulp plugin to convert TTF(TrueType font) files to WOFF2 using ttf2woff2.

Install

npm i gulp-ttftowoff2

Usage

const gulp = require("gulp");
const ttfToWoff2 = require("gulp-ttftowoff2");

export function convertTffToWoff() {
  return gulp.src("./src/*.ttf").pipe(ttfToWoff2()).pipe(gulp.dest("./dist/"));
}