codeam-cli 2.52.4 → 2.52.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 +7 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5397,7 +5397,7 @@ function readAnonId() {
|
|
|
5397
5397
|
}
|
|
5398
5398
|
function superProperties() {
|
|
5399
5399
|
return {
|
|
5400
|
-
cliVersion: true ? "2.52.
|
|
5400
|
+
cliVersion: true ? "2.52.5" : "0.0.0-dev",
|
|
5401
5401
|
nodeVersion: process.version,
|
|
5402
5402
|
platform: process.platform,
|
|
5403
5403
|
arch: process.arch,
|
|
@@ -5578,7 +5578,7 @@ var os4 = __toESM(require("os"));
|
|
|
5578
5578
|
// package.json
|
|
5579
5579
|
var package_default = {
|
|
5580
5580
|
name: "codeam-cli",
|
|
5581
|
-
version: "2.52.
|
|
5581
|
+
version: "2.52.5",
|
|
5582
5582
|
description: "Workflow-continuity bridge for AI coding agents. Wrap Claude Code or Codex in a PTY and supervise, approve, and redirect the session from any device \u2014 async. The terminal companion for CodeAgent Mobile.",
|
|
5583
5583
|
type: "commonjs",
|
|
5584
5584
|
main: "dist/index.js",
|
|
@@ -14876,7 +14876,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
14876
14876
|
if (process.env.NODE_ENV === "test") return;
|
|
14877
14877
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
14878
14878
|
if (process.env.CI) return;
|
|
14879
|
-
const current = true ? "2.52.
|
|
14879
|
+
const current = true ? "2.52.5" : null;
|
|
14880
14880
|
if (!current) return;
|
|
14881
14881
|
const cache = readCache();
|
|
14882
14882
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -14893,7 +14893,7 @@ function checkForUpdates() {
|
|
|
14893
14893
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
14894
14894
|
if (process.env.CI) return;
|
|
14895
14895
|
if (!process.stdout.isTTY) return;
|
|
14896
|
-
const current = true ? "2.52.
|
|
14896
|
+
const current = true ? "2.52.5" : null;
|
|
14897
14897
|
if (!current) return;
|
|
14898
14898
|
const cache = readCache();
|
|
14899
14899
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -15595,7 +15595,7 @@ var defaultSpawner = (env, cwd, args2 = []) => (0, import_node_child_process15.s
|
|
|
15595
15595
|
detached: false
|
|
15596
15596
|
});
|
|
15597
15597
|
function currentCliVersion() {
|
|
15598
|
-
return true ? "2.52.
|
|
15598
|
+
return true ? "2.52.5" : null;
|
|
15599
15599
|
}
|
|
15600
15600
|
function runCmd(cmd, args2, timeoutMs) {
|
|
15601
15601
|
return new Promise((resolve7) => {
|
|
@@ -31207,7 +31207,7 @@ function checkChokidar() {
|
|
|
31207
31207
|
}
|
|
31208
31208
|
async function doctor(args2 = []) {
|
|
31209
31209
|
const json = args2.includes("--json");
|
|
31210
|
-
const cliVersion = true ? "2.52.
|
|
31210
|
+
const cliVersion = true ? "2.52.5" : "0.0.0-dev";
|
|
31211
31211
|
const apiBase2 = resolveApiBaseUrl();
|
|
31212
31212
|
const diagnosticId = (0, import_node_crypto8.randomUUID)();
|
|
31213
31213
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -31406,7 +31406,7 @@ async function completion(args2) {
|
|
|
31406
31406
|
// src/commands/version.ts
|
|
31407
31407
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
31408
31408
|
function version2() {
|
|
31409
|
-
const v = true ? "2.52.
|
|
31409
|
+
const v = true ? "2.52.5" : "unknown";
|
|
31410
31410
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
31411
31411
|
}
|
|
31412
31412
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.52.
|
|
3
|
+
"version": "2.52.5",
|
|
4
4
|
"description": "Workflow-continuity bridge for AI coding agents. Wrap Claude Code or Codex in a PTY and supervise, approve, and redirect the session from any device — async. The terminal companion for CodeAgent Mobile.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "dist/index.js",
|