Further symbol refinements
This commit is contained in:
parent
78dec6dbf5
commit
fdebd394b8
7 changed files with 392 additions and 109 deletions
12
verdafile.js
12
verdafile.js
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue