@kb-labs/commit-core 2.74.0 → 2.75.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/generator/index.js +3 -0
- package/dist/generator/index.js.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
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
|