fontmin
実装
サブセット化もこのmoduleがやっている
てことはfontminを使う必要はなさそうだな
code:ts
import Fontmin from "npm:fontmin@0.9.9";
const fontmin = new Fontmin()
.src("fonts/*.ttf")
.use(Fontmin.glyph({ text: "必要なフォントの文字をここにいれる" }))
.dest("build/fonts");
const files = await Promise<unknown>((resolve, reject) => {
fontmin.run(
(err, files) => {
reject(err);
resolve(files);
}
);
});
console.log(files);