@clawos-dev/clawd 0.2.368 → 0.2.369
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/cli.cjs +3 -2
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -60937,7 +60937,7 @@ function computeMethodAccess(args) {
|
|
|
60937
60937
|
}
|
|
60938
60938
|
|
|
60939
60939
|
// src/version.ts
|
|
60940
|
-
var version = "0.2.
|
|
60940
|
+
var version = "0.2.369".length > 0 ? "0.2.369" : "dev";
|
|
60941
60941
|
|
|
60942
60942
|
// src/cli-probe/probe.ts
|
|
60943
60943
|
var fs62 = __toESM(require("fs"), 1);
|
|
@@ -65633,7 +65633,8 @@ async function startDaemon(config) {
|
|
|
65633
65633
|
startedAt: (/* @__PURE__ */ new Date()).toISOString(),
|
|
65634
65634
|
authMode,
|
|
65635
65635
|
authToken: resolvedAuthToken ?? void 0,
|
|
65636
|
-
spawnedByDesktop: readSpawnedByDesktopFromEnv() || void 0
|
|
65636
|
+
spawnedByDesktop: readSpawnedByDesktopFromEnv() || void 0,
|
|
65637
|
+
cliPath: process.argv[1] ?? ""
|
|
65637
65638
|
};
|
|
65638
65639
|
stateMgr.write(stateSnapshot);
|
|
65639
65640
|
process.stdout.write(`Ready: ${url}
|