Skip to content

Commit 0600fdf

Browse files
committed
remove commented logs
1 parent 64c9026 commit 0600fdf

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

apps/array/vite.main.config.mts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,6 @@ function copyClaudeExecutable(): Plugin {
101101
existsSync(join(candidate.path, "cli.js")) &&
102102
existsSync(join(candidate.path, "yoga.wasm"))
103103
) {
104-
// console.log(
105-
// `[copy-claude-executable] Found pre-built artifacts at ${candidate.path}`,
106-
// );
107104
const files = ["cli.js", "package.json", "yoga.wasm"];
108105
for (const file of files) {
109106
copyFileSync(join(candidate.path, file), join(destDir, file));
@@ -112,11 +109,6 @@ function copyClaudeExecutable(): Plugin {
112109
}
113110
}
114111

115-
// Fallback: Assemble from individual source packages (Development Workspace)
116-
// console.log(
117-
// "[copy-claude-executable] Pre-built artifacts not found. Attempting to assemble from workspace sources...",
118-
// );
119-
120112
const rootNodeModules = join(__dirname, "../../node_modules");
121113
const sdkDir = join(rootNodeModules, "@anthropic-ai/claude-agent-sdk");
122114
const yogaDir = join(rootNodeModules, "yoga-wasm-web/dist");

0 commit comments

Comments
 (0)