-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chores: add eslint rules #12
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
수정 사항package-lock.json, yarn-lock.json 등 package manager-specific한 파일은 .gitignore에 추가하여 커밋에서 제외시켰습니다. 버그 원인create-react-app으로 react app을 세팅했을 경우 typescript 5 버전을 포함하지 않습니다. 따라서 npm으로 실행할 경우에는 버전 미스매칭으로 에러가 발생합니다. 반면, yarn에서는 정확한 원인은 규명하지 못했지만 제대로 실행이 됩니다. CRA를 무시하고 명시한 version으로 overriding 해주는 것으로 보입니다. 추후 개발 플로우 수정vercel에서 말하길, lock file을 확인해서 package manager를 선택하고, 이를 통해 빌드를 진행한다고 합니다. lock file이 없을 경우에는 예시 1
예시 2
lock file |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
vercel deployment을 local cli에서를 build해보기 위해서 .vercel도 .gitignore에 추가했습니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
eslint rules 추가