@@ -1,6 +1,6 @@
{
"name": "bot-noticias",
- "version": "0.0.4",
+ "version": "0.0.5",
"description": "Bot que busca noticias y las replica en mastodon.cl",
"main": "dist/index.js",
"scripts": {
@@ -30,9 +30,9 @@ async function main (): Promise<void> {
}
main()
- .then(() => {
- process.exit(0);
- })
.catch((err) => {
console.error(err)
+ })
+ .finally(() => {
+ process.exit(0);
});