fix(docs): README 의 패키지 매니저를 yarn → npm 으로 통일#27
Merged
seongyeon1 merged 1 commit intomainfrom May 1, 2026
Merged
Conversation
repo 는 package-lock.json 만 추적하는데 README 가 yarn 을 안내해서, yarn 으로 설치할 경우 transitive dependency (특히 webpack) 가 달라져 dev server 가 ProgressPlugin ValidationError 로 종료되던 문제. * yarn → npm ci (Installation) * yarn start → npm start * yarn build → npm run build * yarn deploy → npm run deploy * npm 표준 매니저 안내 줄 추가
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.
Closes #25
문제
repo 는 `package-lock.json` 만 추적하는데 README 가 yarn 명령어로 안내. yarn 으로 설치하면 transitive dependency (특히 webpack) 가 달라져 dev server 가 `ProgressPlugin ValidationError` 로 종료됨.
```
```
수정
이슈 추천 옵션 1 (npm 기준 정리). 가장 작은 변경.
추가로 README 상단에 "이 저장소는 npm 을 표준 패키지 매니저로 사용합니다" 안내를 명시해서 향후 다른 분이 yarn 으로 들어오는 케이스를 차단.
Test plan