Skip to content

Commit

Permalink
Release 0.39.0
Browse files Browse the repository at this point in the history
  • Loading branch information
be5invis committed Jan 22, 2023
2 parents 127a7ad + e7172b5 commit 218385c
Show file tree
Hide file tree
Showing 327 changed files with 18 additions and 10 deletions.
5 changes: 5 additions & 0 deletions make/pass2/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,19 @@ export default (async function makeFont(argv) {
const a = await introFont({ from: argv.main, prefix: "a" });
const b = await introFont({ from: argv.kanji, prefix: "b" });
const c = await introFont({ from: argv.hangul, prefix: "c" });

if (argv.italize) italize(b, 9.4);
if (argv.italize) italize(c, 9.4);

mergeBelow(a, b, { mergeOTL: true });
mergeBelow(a, c, { mergeOTL: true });

shareFeatures(a.GSUB);
shareFeatures(a.GPOS);

// This will make the order of glyphs in TTC less mangled
a.glyf.__glyf_pad__ = { advanceWidth: 0, contours: [[GlyphPoint.cornerFromXY(0, 0)]] };
a.glyph_order = gc(a, { rankMap: [["__glyf_pad__", 1]] });

await buildFont(a, { to: argv.o });
});
19 changes: 10 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sarasa-gothic",
"version": "0.38.0",
"version": "0.39.0",
"main": "./run",
"scripts": {
"build": "verda -f verdafile.mjs",
Expand All @@ -16,20 +16,21 @@
"@chlorophytum/hm-select-glyphs": "^0.41.21",
"@chlorophytum/hm-ideograph": "^0.41.1",
"clone": "^2.1.2",
"fs-extra": "^10.1.0",
"fs-extra": "^11.1.0",
"JSONStream": "^1.3.5",
"strip-bom-stream": "^5.0.0",
"temp": "^0.9.4",
"typo-geom": "^0.12.1",
"typo-geom": "^0.13.0",
"verda": "^1.11.0",
"which": "^2.0.2",
"otb-ttc-bundle": "^1.5.4"
"which": "^3.0.0",
"ot-builder-cli": "^1.5.5",
"otb-ttc-bundle": "^1.5.5"
},
"devDependencies": {
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.7.1"
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"prettier": "^2.8.3"
},
"engines": {
"node": ">=12.0.0"
Expand Down
Loading

0 comments on commit 218385c

Please sign in to comment.