@openxiaobu/codexl 0.1.8 → 0.1.9
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 +1 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -73,9 +73,7 @@ async function handleInteractiveToggle() {
|
|
|
73
73
|
let cursor = 0;
|
|
74
74
|
let changed = false;
|
|
75
75
|
const render = () => {
|
|
76
|
-
|
|
77
|
-
process.stdout.write("\x1b[2J\x1b[0f");
|
|
78
|
-
console.log("空格切换选中账号启用状态,回车确认,q 退出。\n");
|
|
76
|
+
console.log("\n空格切换选中账号启用状态,回车确认,q 退出:\n");
|
|
79
77
|
for (let i = 0; i < accounts.length; i += 1) {
|
|
80
78
|
const account = accounts[i];
|
|
81
79
|
const prefix = i === cursor ? ">" : " ";
|