fix(coverage): fetchAlbumItems·openPDFViewer GROUP_MAP 매핑 (orphan 오탐 제거)#127
Merged
Conversation
… 제거) 두 export는 실재 SDK export이고 ko+en 페이지·sidebars 배선이 이미 있는데 IGNORED_EXPORTS에 들어 있으면서 GROUP_MAP엔 없어 coverage:check가 orphan으로 오탐했다. GROUP_MAP에 camera/navigation 매핑을 추가하고 stale IGNORED_EXPORTS 항목을 제거한다. events/onVisibilityChangedByTransparentServiceWeb orphan은 #120(baseline) 대기로 의도적으로 남긴다. Closes #126
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
무엇
pnpm coverage:check가fetchAlbumItems(camera)·openPDFViewer(navigation)를 Orphaned docs pages로 오탐하던 것을 정정한다.두 export는:
@apps-in-toss/web-frameworkcore.d.ts의 실재 exportdocs/api/{camera/fetchAlbumItems,navigation/openPDFViewer}.mdx+ en mirror)sidebars.ts에 이미 배선 (L94, L201)원인은
scripts/sdk-coverage.ts의 모순: 두 export가IGNORED_EXPORTS에 있으면서GROUP_MAP엔 없어 그룹 매핑 실패 → orphan. (페이지가 존재하는 export를 ignore 하는 것 자체가 모순.)변경
GROUP_MAP:fetchAlbumItems: 'camera',openPDFViewer: 'navigation'추가IGNORED_EXPORTS: 두 항목 + stale 주석("New 3.0 exports not yet documented") 제거범위 밖 (의도적)
events/onVisibilityChangedByTransparentServiceWeborphan은 #120(baseline version-strategy) 대기 — 이 PR에서 건드리지 않는다.검증 (headless)
Closes #126