codeam-cli 1.4.4 → 1.4.5
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 +3 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -115,7 +115,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
|
|
|
115
115
|
// package.json
|
|
116
116
|
var package_default = {
|
|
117
117
|
name: "codeam-cli",
|
|
118
|
-
version: "1.4.
|
|
118
|
+
version: "1.4.5",
|
|
119
119
|
description: "Remote control Claude Code from your mobile device",
|
|
120
120
|
main: "dist/index.js",
|
|
121
121
|
bin: {
|
|
@@ -1660,11 +1660,7 @@ async function pair() {
|
|
|
1660
1660
|
pairedAt: Date.now()
|
|
1661
1661
|
});
|
|
1662
1662
|
showSuccess(`Paired with ${info.userName} (${info.plan})`);
|
|
1663
|
-
console.log(
|
|
1664
|
-
import_picocolors3.default.dim(`
|
|
1665
|
-
Session saved. Run ${import_picocolors3.default.white("codeam")} to start.
|
|
1666
|
-
`)
|
|
1667
|
-
);
|
|
1663
|
+
console.log("");
|
|
1668
1664
|
resolve();
|
|
1669
1665
|
},
|
|
1670
1666
|
() => {
|
|
@@ -1675,6 +1671,7 @@ async function pair() {
|
|
|
1675
1671
|
);
|
|
1676
1672
|
process.once("SIGINT", sigintHandler);
|
|
1677
1673
|
});
|
|
1674
|
+
await start();
|
|
1678
1675
|
}
|
|
1679
1676
|
|
|
1680
1677
|
// src/commands/sessions.ts
|