node-module 코드를 수정하고 patch 하기

2023. 4. 28. 09:34Node

🔥 node-module patch


💥 사용방법


1. Install

npm i patch-package
yarn add -D patch-package postinstall-postinstall

2. package-json에 script 추가

// package.json

"scripts": {
    "postinstall": "patch-package" 
}

3. 모듈 수정 후

yarn patch-package [package-name]

수정한 node_module 안 패키지를 patch-package를 이용하여 패키지화 시킨다.

4. git 명령어로 공유

git add patches/[...patch]
git commit -m [commit message goes here]