test_20
Push to main / Reset-Version-Tag (push) Successful in 5s

This commit is contained in:
2026-05-18 13:40:24 -06:00
parent cc1420dcc7
commit b98a8036c2
+2 -2
View File
@@ -16,7 +16,7 @@ execSync("pipx install mpy-cross", { encoding: "utf8" });
mkdirSync(libName); mkdirSync(libName);
// Add base lib file to repo // Add base lib file to repo
writeFileSync(`${libName}/__init__.mpy`, new ArrayBuffer(0)); writeFileSync(`${libName}/__init__.mpy`, "");
// Update urls // Update urls
packageJsonUrls.push([`${libName}/__init__.mpy`, `__init__.mpy`]); packageJsonUrls.push([`${libName}/__init__.mpy`, `__init__.mpy`]);
@@ -33,7 +33,7 @@ for (let modPy of readdirSync(".").filter((f) => f.slice(-2) == "py")) {
}); });
// Add module files to repo // Add module files to repo
writeFileSync(`${libName}/${modInitPath}`, new ArrayBuffer(0)); writeFileSync(`${libName}/${modInitPath}`, "");
// Update urls // Update urls
packageJsonUrls.push([`${libName}/${modInitPath}`, `${modInitPath}`]); packageJsonUrls.push([`${libName}/${modInitPath}`, `${modInitPath}`]);