-
Notifications
You must be signed in to change notification settings - Fork 2
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
Set yarn berry #180
Closed
Closed
Set yarn berry #180
Conversation
This file contains 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
delete-merged-branch bot setting
sunwoo0706
requested review from
hyeongrok7874,
ImChangGyu,
iseolin76 and
songsihyeon
September 23, 2021 04:59
iseolin76
suggested changes
Sep 23, 2021
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.
수고하셨습니다
iseolin76
approved these changes
Sep 23, 2021
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
이제 리뷰해주시면 됩니다 !! |
iseolin76
approved these changes
Sep 28, 2021
conflict로 인하여 develop에 있는 코드로 세팅하도록 하겠습니다. |
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.
개요
프로젝트 규모가 커짐에 따라 효율적인 종속성 관리 툴이 필요하여
yarn berry
설정을 하였습니다.작업사항
기본 설정 관련
yarnpkg.com
을 보고 플러그 앤 플레이 방식으로yarn berry
설정을 하였고 그 이후 발생된 이슈들을 처리했습니다. 마이그레이션시 참고한 자료입니다. 📖 <.pnp.cjs
에 플러그 앤 플레이가 디폴트로 설정되어 있기는 하지만 명시해주면 좋을것 같아 아래 코드를 삽입했습니다.nodeLinker: "pnp"
그리고 플러그 앤 플레이 방식으로 변경됨에 따라 기존의
node-modules
(gitignore당해서 github에는 존재하지 않음)와package-lock.json
을 제거했습니다.그리고
package.json
에서는eslint
설정을 불러올 수 없기에.eslintrc.json
에 다음과 같은 코드를 옮겼습니다.yarn script 관련
react-script start
앞에export 8080 ...
코드때문에 실행이 되지 않았습니다.yarn add eslint-config-react-app
을 입력하여 해결했습니다. 관련 자료yarn add react-router eslint-config-react-app
을 입력하여 해결하였습니다. 관련 자료yarn add react-is
를 입력하여 해결했습니다. 관련 자료type-script 관련