- npm管理本地修改的三方库
在项目的根目录添加node_modules_local
文件夹,存放修改的三方组件,这个组件需要添加本身的node_modules
,然后在package.json
文件中添加
1 | "react-native-vector-icons": "file:node_modules_local/react-native-vector-icons", |
- 需要修改的代码,从源码的fork出来,修改上传,
package.json
这样添加
git+自己fork后的仓库地址
1 | "react-native-version-number": "git+https://github.com/CarSmallGuo/react-native-version-number.git", |