@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.
Files changed (2) hide show
  1. package/dist/cli.js +1 -3
  2. 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 ? ">" : " ";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openxiaobu/codexl",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "本地 Codex 多账号切换与状态管理工具",
5
5
  "type": "commonjs",
6
6
  "main": "dist/cli.js",