restore calling the main

This commit is contained in:
Ville Saukkonen 2023-04-22 17:50:14 +03:00
parent dd255bf5d5
commit a6762eb223
3 changed files with 10 additions and 1 deletions

4
dist/index.js vendored

@ -245,6 +245,10 @@ function main() {
}
});
}
main().catch((error) => {
console.error("Error:", error);
process.exit(1);
});
/***/ }),

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

@ -259,3 +259,8 @@ async function main() {
);
}
}
main().catch((error) => {
console.error("Error:", error);
process.exit(1);
});