프로젝트를 진행하면서 오픈 라이브러리를 수정해서 적용해야하는 경우가 있다. patch-package는 개발자가 npm dependency를 즉시 수정하고 적용할 수 있도록 해준다. # 사용법 1. package.json의 scripts에 "postinstall" : "patch-package"추가 "scripts": { "postinstall" : "patch-package" }, 2. patch-package 설치 npm i patch-package 3. 오픈 라이브러리의 소스를 수정 4. patch 파일 생성 npx patch-package 수정한 오픈라이브러리명 //example: npx patch-package @react-native-firebase/messaging 5. patches 폴더의 ..