diff --git a/README.md b/README.md index cf405dc..3983ed2 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ The application reads Claude Code conversation logs from: ### System Requirements -- **Node.js**: Version 20.18.1 or later +- **Node.js**: Version 20.19.0 or later - **Operating Systems**: macOS and Linux (Windows is not supported) ### Claude Code Compatibility diff --git a/package.json b/package.json index cefe434..6a05070 100644 --- a/package.json +++ b/package.json @@ -70,7 +70,6 @@ "next": "15.5.6", "next-themes": "^0.4.6", "parse-git-diff": "^0.0.19", - "playwright": "^1.56.1", "prexit": "^2.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", @@ -96,6 +95,7 @@ "@types/react-dom": "^19.2.2", "@types/react-syntax-highlighter": "^15.5.13", "npm-run-all2": "^8.0.4", + "playwright": "^1.56.1", "release-it": "^19.0.5", "release-it-pnpm": "^4.6.6", "tailwindcss": "^4.1.14", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 570a5bc..d82ad42 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -92,9 +92,6 @@ importers: parse-git-diff: specifier: ^0.0.19 version: 0.0.19 - playwright: - specifier: ^1.56.1 - version: 1.56.1 prexit: specifier: ^2.3.0 version: 2.3.0 @@ -165,6 +162,9 @@ importers: npm-run-all2: specifier: ^8.0.4 version: 8.0.4 + playwright: + specifier: ^1.56.1 + version: 1.56.1 release-it: specifier: ^19.0.5 version: 19.0.5(@types/node@24.8.1) @@ -4070,7 +4070,7 @@ packages: undici@7.16.0: resolution: {integrity: sha512-QEg3HPMll0o3t2ourKwOeUAZ159Kn9mx5pnzHRQO8+Wixmh88YdZRiIwat0iNzNNXn0yoEtXJqFpyW7eM8BV7g==} - engines: {node: '>=20.18.1'} + engines: {node: '>=20.19.0'} unicorn-magic@0.3.0: resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==} diff --git a/src/app/projects/[projectId]/sessions/[sessionId]/components/diffModal/DiffModal.tsx b/src/app/projects/[projectId]/sessions/[sessionId]/components/diffModal/DiffModal.tsx index 9ce5b21..75644e1 100644 --- a/src/app/projects/[projectId]/sessions/[sessionId]/components/diffModal/DiffModal.tsx +++ b/src/app/projects/[projectId]/sessions/[sessionId]/components/diffModal/DiffModal.tsx @@ -223,7 +223,6 @@ export const DiffModal: FC = ({ const initialSelection = new Map( diffData.data.files.map((file) => [file.filePath, true]), ); - console.log("[DiffModal] Initializing file selection:", initialSelection); setSelectedFiles(initialSelection); } }, [diffData]); diff --git a/src/server/core/git/presentation/GitController.ts b/src/server/core/git/presentation/GitController.ts index 8c6d409..6f56993 100644 --- a/src/server/core/git/presentation/GitController.ts +++ b/src/server/core/git/presentation/GitController.ts @@ -125,12 +125,6 @@ const LayerImpl = Effect.gen(function* () { Effect.gen(function* () { const { projectId, files, message } = options; - console.log("[GitController.commitFiles] Request:", { - projectId, - files, - message, - }); - const { project } = yield* projectRepository.getProject(projectId); if (project.meta.projectPath === null) { console.log("[GitController.commitFiles] Project path is null"); diff --git a/src/server/core/git/services/GitService.ts b/src/server/core/git/services/GitService.ts index dd929fa..f6f72d8 100644 --- a/src/server/core/git/services/GitService.ts +++ b/src/server/core/git/services/GitService.ts @@ -120,9 +120,7 @@ const LayerImpl = Effect.gen(function* () { ); } - console.log("[GitService.stageFiles] Staging files:", files, "in", cwd); const result = yield* execGitCommand(["add", ...files], cwd); - console.log("[GitService.stageFiles] Stage result:", result); return result; });