First time build of the safe-chain binaries

This commit is contained in:
Sander Declerck 2025-11-27 15:01:57 +01:00
parent 72d6acaa7f
commit b14ff4cb33
No known key found for this signature in database
16 changed files with 608 additions and 53 deletions

View file

@ -7,6 +7,8 @@ import { setEcoSystem, ECOSYSTEM_JS } from "../src/config/settings.js";
setEcoSystem(ECOSYSTEM_JS);
const packageManagerName = "npx";
initializePackageManager(packageManagerName);
var exitCode = await main(process.argv.slice(2));
process.exit(exitCode);
(async () => {
var exitCode = await main(process.argv.slice(2));
process.exit(exitCode);
})();