Skip to content

Commit 83a9d1c

Browse files
committed
fix(deps): repair renovate lockfile update
1 parent a65ded3 commit 83a9d1c

5 files changed

Lines changed: 952 additions & 1060 deletions

File tree

package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,6 @@
5959
"@parcel/watcher",
6060
"msgpackr-extract",
6161
"unrs-resolver"
62-
],
63-
"patchedDependencies": {
64-
"@ton-ai-core/vibecode-linter@1.0.6": "patches/@ton-ai-core__vibecode-linter@1.0.6.patch"
65-
}
62+
]
6663
}
6764
}

packages/app/tests/docker-git/entrypoint-auth.test.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ describe("renderEntrypoint auth bridge", () => {
3333
expect(entrypoint).toContain("CLAUDE_WRAPPER_BIN=\"/usr/local/bin/claude\"")
3434
expect(entrypoint).toContain("cat <<'EOF' > \"$CLAUDE_WRAPPER_BIN\"")
3535
expect(entrypoint).toContain("CLAUDE_REAL_BIN=\"__CLAUDE_REAL_BIN__\"")
36-
expect(entrypoint).toContain("sed -i \"s#__CLAUDE_REAL_BIN__#$CLAUDE_REAL_BIN#g\" \"$CLAUDE_WRAPPER_BIN\" || true")
36+
expect(entrypoint).toContain(
37+
"sed -i \"s#__CLAUDE_REAL_BIN__#$CLAUDE_REAL_BIN#g\" \"$CLAUDE_WRAPPER_BIN\" || true"
38+
)
3739
expect(entrypoint).toContain("CLAUDE_CONFIG_DIR=\"${CLAUDE_CONFIG_DIR:-$HOME/.claude}\"")
3840
expect(entrypoint).toContain("docker_git_ensure_claude_cli()")
3941
expect(entrypoint).toContain("claude cli.js not found under npm global root; skip shim restore")
@@ -51,7 +53,9 @@ describe("renderEntrypoint auth bridge", () => {
5153
expect(entrypoint).toContain("docker_git_link_claude_home_file \".config.json\"")
5254
expect(entrypoint).toContain("docker_git_link_claude_home_file \".claude.json\"")
5355
expect(entrypoint).toContain("docker_git_link_claude_home_file \".credentials.json\"")
54-
expect(entrypoint).toContain("docker_git_link_claude_file \"$CLAUDE_CONFIG_DIR/.claude.json\" \"$CLAUDE_HOME_JSON\"")
56+
expect(entrypoint).toContain(
57+
"docker_git_link_claude_file \"$CLAUDE_CONFIG_DIR/.claude.json\" \"$CLAUDE_HOME_JSON\""
58+
)
5559
expect(entrypoint).toContain("CLAUDE_GLOBAL_PROMPT_FILE=\"/home/dev/.claude/CLAUDE.md\"")
5660
expect(entrypoint).toContain("CLAUDE_AUTO_SYSTEM_PROMPT=\"${CLAUDE_AUTO_SYSTEM_PROMPT:-1}\"")
5761
expect(entrypoint).toContain("docker-git-managed:claude-md")

packages/lib/src/shell/docker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as Command from "@effect/platform/Command"
22
import type * as CommandExecutor from "@effect/platform/CommandExecutor"
33
import { ExitCode } from "@effect/platform/CommandExecutor"
44
import type { PlatformError } from "@effect/platform/Error"
5-
import { Duration, Effect, Schedule, pipe } from "effect"
5+
import { Duration, Effect, pipe, Schedule } from "effect"
66

77
import { runCommandCapture, runCommandExitCode, runCommandWithExitCodes } from "./command-runner.js"
88
import { CommandFailedError, DockerCommandError } from "./errors.js"

packages/lib/src/usecases/projects-up.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@ const ensureClaudeCliReady = (
103103
? Effect.log(`Claude CLI self-heal completed in ${containerName}.`)
104104
: Effect.logWarning(
105105
`Claude CLI self-heal failed in ${containerName} (exit ${healExitCode}).`
106-
)),
106+
)
107+
),
107108
Effect.asVoid
108109
)
109110
}),

0 commit comments

Comments
 (0)