dsh-lark-bot 0.8.1 → 0.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli.js CHANGED
@@ -7079,7 +7079,10 @@ function printResult(result) {
7079
7079
  }
7080
7080
  function waitForShutdown2() {
7081
7081
  return new Promise((resolve5) => {
7082
+ const keepAlive = setInterval(() => {
7083
+ }, 2 ** 31 - 1);
7082
7084
  const shutdown = () => {
7085
+ clearInterval(keepAlive);
7083
7086
  process.off("SIGINT", shutdown);
7084
7087
  process.off("SIGTERM", shutdown);
7085
7088
  resolve5();