* Bump deps

* reinstall
This commit is contained in:
Belleve 2024-10-06 22:51:29 -10:00 committed by GitHub
parent fe348a7135
commit f652b2f800
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 506 additions and 295 deletions

789
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -20,10 +20,10 @@
"semver": "^7.6.3", "semver": "^7.6.3",
"uuid": "^10.0.0", "uuid": "^10.0.0",
"verda": "^1.12.2", "verda": "^1.12.2",
"which": "^4.0.0" "which": "^5.0.0"
}, },
"devDependencies": { "devDependencies": {
"eslint": "^9.9.1", "eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0", "eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1", "eslint-plugin-prettier": "^5.2.1",
"glob": "^11.0.0", "glob": "^11.0.0",

View file

@ -17,7 +17,7 @@
"@iosevka/glyph": "31.8.0", "@iosevka/glyph": "31.8.0",
"@iosevka/param": "31.8.0", "@iosevka/param": "31.8.0",
"@iosevka/util": "31.8.0", "@iosevka/util": "31.8.0",
"harfbuzzjs": "^0.3.6", "harfbuzzjs": "^0.4.0",
"ot-builder": "^1.7.4", "ot-builder": "^1.7.4",
"semver": "^7.6.3" "semver": "^7.6.3"
} }

View file

@ -25,7 +25,7 @@ export async function buildCompatLigatures(para, font) {
const buffer = hb.createBuffer(); const buffer = hb.createBuffer();
buffer.addText(entry.sequence); buffer.addText(entry.sequence);
buffer.guessSegmentProperties(); buffer.guessSegmentProperties();
hb.shapeWithTrace(hbFont, buffer, entry.featureTag, 0xffff, 0); hb.shape(hbFont, buffer, entry.featureTag);
const shapingResults = buffer.json(); const shapingResults = buffer.json();
buffer.destroy(); buffer.destroy();

View file

@ -8,6 +8,6 @@
"dependencies": { "dependencies": {
"@iarna/toml": "^2.2.5", "@iarna/toml": "^2.2.5",
"@iosevka/param": "31.8.0", "@iosevka/param": "31.8.0",
"@unicode/unicode-16.0.0": "^1.0.0" "@unicode/unicode-16.0.0": "^1.6.0"
} }
} }

View file

@ -11,7 +11,7 @@
"dependencies": { "dependencies": {
"@iarna/toml": "^2.2.5", "@iarna/toml": "^2.2.5",
"@iosevka/param": "31.8.0", "@iosevka/param": "31.8.0",
"@unicode/unicode-16.0.0": "^1.0.0", "@unicode/unicode-16.0.0": "^1.6.0",
"cldr": "^7.5.0" "cldr": "^7.5.0"
} }
} }