@kb-labs/commit-core 2.74.0 → 2.77.0

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.
@@ -1878,6 +1878,9 @@ async function promptUserConfirmation(question, defaultValue = false, autoConfir
1878
1878
  console.log(`${question} [auto-confirmed with --yes]`);
1879
1879
  return true;
1880
1880
  }
1881
+ if (!process.stdin.readableEnded) {
1882
+ process.stdin.resume();
1883
+ }
1881
1884
  const rl = readline.createInterface({
1882
1885
  input: process.stdin,
1883
1886
  output: process.stdout