Further symbol refinements

This commit is contained in:
Belleve Invis 2020-04-02 01:33:38 -07:00
parent 78dec6dbf5
commit fdebd394b8
7 changed files with 392 additions and 109 deletions

View file

@ -560,9 +560,21 @@ const PagesFontExport = task(`pages:font-export`, async target => {
}
});
const PagesFastFontExport = task(`pages:fast-font-export`, async target => {
const [pagesDir] = await target.need(PagesDir);
if (!pagesDir) return;
const dirs = await target.need(GroupContents`iosevka`);
for (const dir of dirs) {
await cp(`${DIST}/${dir}`, path.resolve(pagesDir, "shared/font-import", dir));
}
});
const Pages = task(`pages`, async target => {
await target.need(PagesDataExport, PagesFontExport);
});
const PagesFast = task(`pages-fast`, async target => {
await target.need(PagesDataExport, PagesFastFontExport);
});
const SampleImagesPre = task(`sample-images:pre`, async target => {
const [sans, slab] = await target.need(