mirror of
https://github.com/freeedcom/ai-codereviewer.git
synced 2025-02-18 15:20:27 +00:00
restore calling the main
This commit is contained in:
parent
dd255bf5d5
commit
a6762eb223
3 changed files with 10 additions and 1 deletions
4
dist/index.js
vendored
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
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);
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue