Initial work of ESM transformation

This commit is contained in:
be5invis 2022-07-16 19:26:49 -07:00
parent 2472c9cff2
commit b8205a63aa
303 changed files with 1959 additions and 2450 deletions

View file

@ -1,36 +0,0 @@
const themes = require("../themes/index");
module.exports = function (args) {
const theme = themes[args.theme];
const unitWidth = 128;
let frames = [];
for (const ch of args.hotChars) {
const slopeClasses = args.slopeDependent ? ["normal", "italic"] : ["normal"];
for (const slope of slopeClasses) {
frames.push({
left: unitWidth * frames.length,
right: unitWidth * (1 + frames.length),
"horizontal-align": "center",
"vertical-align": "center",
"line-height": 128 / 96,
"baseline-offset": 0.85,
contents: [
{ "font-family": "Iosevka" },
{ "font-size": 96 },
{ "font-style": slope },
{ "font-feature-settings": { ...args.fontFeatures, calt: 1 } },
{ color: theme.body },
ch
]
});
}
}
return {
width: unitWidth * frames.length,
height: 160,
frames
};
};