Anki/ts/tools/markpure.ts
Damien Elmes 9f5b7e79cc Move markpure to TypeScript
Combined with the previous changes, this allows the mobile clients to
build the web components without having to set up a Python environment,
and should speed up AnkiDroid CI.
2023-07-03 17:24:27 +10:00

34 lines
1.2 KiB
TypeScript

// Copyright: Ankitects Pty Ltd and contributors
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
import * as fs from "fs";
import * as path from "path";
const root = process.argv[2];
const typeRe = /(make(Enum|MessageType))\(\n\s+".*",/g;
fs.readdirSync(root, { withFileTypes: true }).forEach(dirEnt => {
const dirPath = path.join(root, dirEnt.name);
if (dirEnt.isDirectory()) {
fs.readdirSync(dirPath).forEach(fileName => {
if (fileName.endsWith(".js")) {
const file = path.join(dirPath, fileName);
let contents = fs.readFileSync(file, "utf8");
// allow tree shaking on proto messages
contents = contents.replace(
"= proto3.make",
"= /* @__PURE__ */ proto3.make",
);
// strip out typeName info, which appears to only be required for
// certain JSON functionality (though this only saves a few hundred
// bytes)
contents = contents.replace(typeRe, "$1(\"\",");
fs.writeFileSync(file, contents, "utf8");
}
});
}
});