@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.
package/dist/index.js CHANGED
@@ -1946,6 +1946,9 @@ async function promptUserConfirmation(question, defaultValue = false, autoConfir
1946
1946
  console.log(`${question} [auto-confirmed with --yes]`);
1947
1947
  return true;
1948
1948
  }
1949
+ if (!process.stdin.readableEnded) {
1950
+ process.stdin.resume();
1951
+ }
1949
1952
  const rl = readline.createInterface({
1950
1953
  input: process.stdin,
1951
1954
  output: process.stdout