natureco-cli 2.23.22 → 2.23.23
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/package.json +1 -1
- package/src/commands/code.js +2 -2
package/package.json
CHANGED
package/src/commands/code.js
CHANGED
|
@@ -603,7 +603,7 @@ ${indexPrompt}`;
|
|
|
603
603
|
}
|
|
604
604
|
}
|
|
605
605
|
|
|
606
|
-
if (userMessage === 'exit' || userMessage === 'quit') {
|
|
606
|
+
if (userMessage === 'exit' || userMessage === 'quit' || userMessage === 'çıkış' || userMessage === 'q') {
|
|
607
607
|
showSummary();
|
|
608
608
|
process.exit(0);
|
|
609
609
|
}
|
|
@@ -725,7 +725,7 @@ ${indexPrompt}`;
|
|
|
725
725
|
}
|
|
726
726
|
|
|
727
727
|
async function promptLoop() {
|
|
728
|
-
rl.question('', async (msg) => {
|
|
728
|
+
rl.question(chalk.gray('> '), async (msg) => {
|
|
729
729
|
process.stdout.write('\x1b[1A\x1b[2K');
|
|
730
730
|
try {
|
|
731
731
|
await handleMessage(msg);
|