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

5
font-src/merge-cache.mjs Normal file
View file

@ -0,0 +1,5 @@
import * as Caching from "./gen/caching/index.mjs";
export default (async function main(argv) {
await Caching.merge(argv.base, argv.diff, argv.version, argv.freshAgeKey);
});