codeam-cli 1.3.1 → 1.3.2
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -114,7 +114,7 @@ var import_picocolors = __toESM(require("picocolors"));
|
|
|
114
114
|
// package.json
|
|
115
115
|
var package_default = {
|
|
116
116
|
name: "codeam-cli",
|
|
117
|
-
version: "1.3.
|
|
117
|
+
version: "1.3.2",
|
|
118
118
|
description: "Remote control Claude Code from your mobile device",
|
|
119
119
|
main: "dist/index.js",
|
|
120
120
|
bin: {
|
|
@@ -873,7 +873,7 @@ function renderToLines(raw) {
|
|
|
873
873
|
return screen;
|
|
874
874
|
}
|
|
875
875
|
function detectSelector(lines) {
|
|
876
|
-
if (!lines.some((l) => l.
|
|
876
|
+
if (!lines.some((l) => /^❯\s*\d+\./.test(l.trim()))) return null;
|
|
877
877
|
const optionMap = /* @__PURE__ */ new Map();
|
|
878
878
|
let question = "";
|
|
879
879
|
for (const line of lines) {
|