test_22
Push to main / Reset-Version-Tag (push) Successful in 6s

This commit is contained in:
2026-05-18 13:44:24 -06:00
parent 594eaa04f4
commit f6dac2e93a
+3
View File
@@ -27,6 +27,9 @@ for (let modPy of readdirSync(".").filter((f) => f.slice(-3) == ".py")) {
const modInitPath = `${modName}/__init__.mpy`;
const modMpyPath = `${modName}/${modName}.mpy`;
// create mod dir
mkdirSync(`${libName}/${modName}`);
// compile mpy file
execSync(`pipx run mpy-cross ${modPy} -o ${libName}/${modMpyPath}`, {
encoding: "utf8",