[fix] yarn sdk 파일 복구#17
Conversation
📝 WalkthroughWalkthrough
Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
Suggested labels
Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In @.gitignore:
- Line 37: Update the misleading comment that currently reads "SDK와 Unplugged
폴더를 무시하여 Diff 방지" to reflect the actual .gitignore behavior: either remove the
claim about ignoring the SDK folder or change it to state that the Unplugged
folder is ignored while the SDK folder is intentionally tracked (the tracked SDK
entries introduced around the SDK inclusion lines). Locate the comment line
containing "SDK와 Unplugged 폴더를 무시하여 Diff 방지" and edit its text to match the
reality of the SDK entries (or delete the contradictory phrase) so the comment
no longer contradicts the SDK tracking rules.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: b4c3cb31-cddb-4f03-bce7-682672179125
⛔ Files ignored due to path filters (19)
.yarn/sdks/eslint/bin/eslint.jsis excluded by!**/.yarn/**.yarn/sdks/eslint/lib/api.jsis excluded by!**/.yarn/**.yarn/sdks/eslint/lib/config-api.jsis excluded by!**/.yarn/**.yarn/sdks/eslint/lib/types/config-api.d.tsis excluded by!**/.yarn/**.yarn/sdks/eslint/lib/types/index.d.tsis excluded by!**/.yarn/**.yarn/sdks/eslint/lib/types/rules.d.tsis excluded by!**/.yarn/**.yarn/sdks/eslint/lib/types/universal.d.tsis excluded by!**/.yarn/**.yarn/sdks/eslint/lib/types/use-at-your-own-risk.d.tsis excluded by!**/.yarn/**.yarn/sdks/eslint/lib/universal.jsis excluded by!**/.yarn/**.yarn/sdks/eslint/lib/unsupported-api.jsis excluded by!**/.yarn/**.yarn/sdks/eslint/package.jsonis excluded by!**/.yarn/**.yarn/sdks/integrations.ymlis excluded by!**/.yarn/**.yarn/sdks/typescript/bin/tscis excluded by!**/.yarn/**.yarn/sdks/typescript/bin/tsserveris excluded by!**/.yarn/**.yarn/sdks/typescript/lib/tsc.jsis excluded by!**/.yarn/**.yarn/sdks/typescript/lib/tsserver.jsis excluded by!**/.yarn/**.yarn/sdks/typescript/lib/tsserverlibrary.jsis excluded by!**/.yarn/**.yarn/sdks/typescript/lib/typescript.jsis excluded by!**/.yarn/**.yarn/sdks/typescript/package.jsonis excluded by!**/.yarn/**
📒 Files selected for processing (1)
.gitignore
#️⃣ 관련 이슈
⏰ 작업 시간
💻 작업 내용
.yarn/sdks폴더 복구.gitignore 수정.yarn/*규칙으로 인해 SDK까지 무시되던 문제 수정.yarn/sdks는 추적되도록 예외 처리 추가 작업하면서 고민한 부분
문제 상황
테스트 환경 설정 과정에서
.gitignore수정으로 인해.yarn/sdks폴더가 Git에서 제외되었고, 이후 merge 과정에서 SDK 파일들이 삭제됨이로 인해:
react,@emotion/styled등 의존성 인식 실패react/jsx-runtime관련 타입 에러 발생해결 과정
git diff로 변경 이력 확인gitignore수정👀 리뷰 포인트
.gitignore에서.yarn/sdks예외 처리 부분 위주로 확인해주세요📘 참고
Summary by CodeRabbit
Chores