From 695aeafb866be5977dc943ac1a4060c5db57f43d Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Fri, 5 Dec 2025 11:40:16 +0900 Subject: [PATCH] fix(comment-checker): change npm scope to @code-yeongyu --- src/hooks/comment-checker/cli.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/hooks/comment-checker/cli.ts b/src/hooks/comment-checker/cli.ts index a8d3e72..fe282cd 100644 --- a/src/hooks/comment-checker/cli.ts +++ b/src/hooks/comment-checker/cli.ts @@ -21,20 +21,20 @@ function getPlatformPackageName(): string | null { const arch = process.arch const platformMap: Record = { - "darwin-arm64": "@anthropic-claude/comment-checker-darwin-arm64", - "darwin-x64": "@anthropic-claude/comment-checker-darwin-x64", - "linux-arm64": "@anthropic-claude/comment-checker-linux-arm64", - "linux-x64": "@anthropic-claude/comment-checker-linux-x64", + "darwin-arm64": "@code-yeongyu/comment-checker-darwin-arm64", + "darwin-x64": "@code-yeongyu/comment-checker-darwin-x64", + "linux-arm64": "@code-yeongyu/comment-checker-linux-arm64", + "linux-x64": "@code-yeongyu/comment-checker-linux-x64", } return platformMap[`${platform}-${arch}`] ?? null } function findCommentCheckerPath(): string | null { - // 1. Try to find from @anthropic-claude/comment-checker package + // 1. Try to find from @code-yeongyu/comment-checker package try { const require = createRequire(import.meta.url) - const cliPkgPath = require.resolve("@anthropic-claude/comment-checker/package.json") + const cliPkgPath = require.resolve("@code-yeongyu/comment-checker/package.json") const cliDir = dirname(cliPkgPath) const binaryPath = join(cliDir, "bin", "comment-checker")