Caching improvement: now caching works across families

This commit is contained in:
be5invis 2022-05-28 11:34:34 -07:00
parent de458c9fce
commit 04a6a29238
7 changed files with 122 additions and 34 deletions

7
font-src/merge-cache.js Normal file
View file

@ -0,0 +1,7 @@
"use strict";
const Caching = require("./gen/caching/index");
module.exports = async function main(argv) {
await Caching.merge(argv.base, argv.diff, argv.version, argv.freshAgeKey);
};