@gitlawb/openclaude 0.1.1 → 0.1.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/cli.mjs +10 -7
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -121998,7 +121998,7 @@ var init_metadata = __esm(() => {
|
|
|
121998
121998
|
isClaudeAiAuth: isClaudeAISubscriber(),
|
|
121999
121999
|
version: "99.0.0",
|
|
122000
122000
|
versionBase: getVersionBase(),
|
|
122001
|
-
buildTime: "2026-04-01T03:
|
|
122001
|
+
buildTime: "2026-04-01T03:23:49.527Z",
|
|
122002
122002
|
deploymentEnvironment: env3.detectDeploymentEnvironment(),
|
|
122003
122003
|
...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
|
|
122004
122004
|
githubEventName: process.env.GITHUB_EVENT_NAME,
|
|
@@ -141973,16 +141973,19 @@ var init_wrap_text = __esm(() => {
|
|
|
141973
141973
|
|
|
141974
141974
|
// src/ink/dom.ts
|
|
141975
141975
|
function collectRemovedRects(parent, removed, underAbsolute = false) {
|
|
141976
|
-
if (removed.nodeName === "#text")
|
|
141976
|
+
if (!removed || removed.nodeName === "#text")
|
|
141977
141977
|
return;
|
|
141978
141978
|
const elem = removed;
|
|
141979
|
-
const isAbsolute5 = underAbsolute || elem.style
|
|
141979
|
+
const isAbsolute5 = underAbsolute || elem.style?.position === "absolute";
|
|
141980
141980
|
const cached2 = nodeCache.get(elem);
|
|
141981
141981
|
if (cached2) {
|
|
141982
141982
|
addPendingClear(parent, cached2, isAbsolute5);
|
|
141983
141983
|
nodeCache.delete(elem);
|
|
141984
141984
|
}
|
|
141985
|
-
|
|
141985
|
+
const childNodes = Array.isArray(elem.childNodes) ? [...elem.childNodes] : [];
|
|
141986
|
+
for (const child of childNodes) {
|
|
141987
|
+
if (!child)
|
|
141988
|
+
continue;
|
|
141986
141989
|
collectRemovedRects(parent, child, isAbsolute5);
|
|
141987
141990
|
}
|
|
141988
141991
|
}
|
|
@@ -362788,7 +362791,7 @@ function getAnthropicEnvMetadata() {
|
|
|
362788
362791
|
function getBuildAgeMinutes() {
|
|
362789
362792
|
if (false)
|
|
362790
362793
|
;
|
|
362791
|
-
const buildTime = new Date("2026-04-01T03:
|
|
362794
|
+
const buildTime = new Date("2026-04-01T03:23:49.527Z").getTime();
|
|
362792
362795
|
if (isNaN(buildTime))
|
|
362793
362796
|
return;
|
|
362794
362797
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -456340,7 +456343,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
456340
456343
|
var call56 = async () => {
|
|
456341
456344
|
return {
|
|
456342
456345
|
type: "text",
|
|
456343
|
-
value: `${"99.0.0"} (built ${"2026-04-01T03:
|
|
456346
|
+
value: `${"99.0.0"} (built ${"2026-04-01T03:23:49.527Z"})`
|
|
456344
456347
|
};
|
|
456345
456348
|
}, version2, version_default;
|
|
456346
456349
|
var init_version = __esm(() => {
|
|
@@ -550420,4 +550423,4 @@ async function main2() {
|
|
|
550420
550423
|
}
|
|
550421
550424
|
main2();
|
|
550422
550425
|
|
|
550423
|
-
//# debugId=
|
|
550426
|
+
//# debugId=7028E32727C7EE8764756E2164756E21
|