chore: update dependencies and remove debug logs

- Re-added 'playwright' dependency in package.json and pnpm-lock.yaml.
- Updated Node.js version requirement in README.md from 20.18.1 to 20.19.0.
- Removed console log statements from GitController.ts and GitService.ts for cleaner code.
This commit is contained in:
d-kimsuon
2025-10-21 22:34:12 +09:00
parent 6c4d301125
commit a85bdf0a26
6 changed files with 6 additions and 15 deletions

View File

@@ -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

View File

@@ -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",

8
pnpm-lock.yaml generated
View File

@@ -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==}

View File

@@ -223,7 +223,6 @@ export const DiffModal: FC<DiffModalProps> = ({
const initialSelection = new Map(
diffData.data.files.map((file) => [file.filePath, true]),
);
console.log("[DiffModal] Initializing file selection:", initialSelection);
setSelectedFiles(initialSelection);
}
}, [diffData]);

View File

@@ -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");

View File

@@ -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;
});