1.0.3 • Published 4 years ago

gulp-ttf-to-woff v1.0.3

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

NPM CD Dependencies NPM Version

gulp-ttf-to-woff

Gulp plugin to convert TTF(TrueType font) files to WOFF using ttf2woff.

Install

npm i gulp-ttf-to-woff

Usage

const gulp = require("gulp");
const ttfToWoff = require("gulp-ttf-to-woff");

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