codeam-cli 2.14.0 → 2.15.0

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/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1689,7 +1689,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
1689
1689
  // package.json
1690
1690
  var package_default = {
1691
1691
  name: "codeam-cli",
1692
- version: "2.14.0",
1692
+ version: "2.15.0",
1693
1693
  description: "Remote control Claude Code (and other AI coding agents) from your mobile phone. Pair your device, send prompts, stream responses in real-time, and approve commands \u2014 from anywhere.",
1694
1694
  type: "commonjs",
1695
1695
  main: "dist/index.js",
@@ -10817,7 +10817,7 @@ async function stopWorkspaceFromLocal(target) {
10817
10817
  // src/commands/version.ts
10818
10818
  var import_picocolors11 = __toESM(require("picocolors"));
10819
10819
  function version() {
10820
- const v = true ? "2.14.0" : "unknown";
10820
+ const v = true ? "2.15.0" : "unknown";
10821
10821
  console.log(`${import_picocolors11.default.bold("codeam-cli")} ${import_picocolors11.default.cyan(v)}`);
10822
10822
  }
10823
10823
 
@@ -10956,7 +10956,7 @@ function checkForUpdates() {
10956
10956
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
10957
10957
  if (process.env.CI) return;
10958
10958
  if (!process.stdout.isTTY) return;
10959
- const current = true ? "2.14.0" : null;
10959
+ const current = true ? "2.15.0" : null;
10960
10960
  if (!current) return;
10961
10961
  const cache = readCache();
10962
10962
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.14.0",
3
+ "version": "2.15.0",
4
4
  "description": "Remote control Claude Code (and other AI coding agents) from your mobile phone. Pair your device, send prompts, stream responses in real-time, and approve commands — from anywhere.",
5
5
  "type": "commonjs",
6
6
  "main": "dist/index.js",