A little optimization
This commit is contained in:
parent
c7440bb5a2
commit
bbe32ad1b6
2 changed files with 3 additions and 1 deletions
|
@ -7,6 +7,7 @@ optimizeWithTtx = false
|
||||||
[buildPlans.iosevka]
|
[buildPlans.iosevka]
|
||||||
family = "Iosevka"
|
family = "Iosevka"
|
||||||
desc = "Default"
|
desc = "Default"
|
||||||
|
buildCharMap = true
|
||||||
snapshotFamily = 'Iosevka'
|
snapshotFamily = 'Iosevka'
|
||||||
snapshotFeature = {"NWID" = 0}
|
snapshotFeature = {"NWID" = 0}
|
||||||
export-glyph-names = true
|
export-glyph-names = true
|
||||||
|
|
|
@ -244,6 +244,7 @@ const FontInfoOf = computed.group("metadata:font-info-of", async (target, fileNa
|
||||||
name: fileName,
|
name: fileName,
|
||||||
variants: bp.variants || null,
|
variants: bp.variants || null,
|
||||||
derivingVariants: bp.derivingVariants,
|
derivingVariants: bp.derivingVariants,
|
||||||
|
buildCharMap: bp.buildCharMap,
|
||||||
featureControl: {
|
featureControl: {
|
||||||
noCvSs: bp["no-cv-ss"] || false,
|
noCvSs: bp["no-cv-ss"] || false,
|
||||||
noLigation: bp["no-ligation"] || false,
|
noLigation: bp["no-ligation"] || false,
|
||||||
|
@ -418,7 +419,7 @@ const DistUnhintedTTF = file.make(
|
||||||
echo.action(echo.hl.command(`Create TTF`), out.full);
|
echo.action(echo.hl.command(`Create TTF`), out.full);
|
||||||
const { cacheUpdated } = await silently.node("font-src/index.mjs", {
|
const { cacheUpdated } = await silently.node("font-src/index.mjs", {
|
||||||
o: out.full,
|
o: out.full,
|
||||||
oCharMap: charMapPath,
|
...(fi.buildCharMap ? { oCharMap: charMapPath } : {}),
|
||||||
oTtfaControls: ttfaControlsPath,
|
oTtfaControls: ttfaControlsPath,
|
||||||
cacheFreshAgeKey: ageKey,
|
cacheFreshAgeKey: ageKey,
|
||||||
iCache: cachePath,
|
iCache: cachePath,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue