【腾宇】postinstall-postinstall配合patch-package重写node_modules的依赖方法

1、本地安装依赖(postinstall-postinstall、patch-package)

npm i patch-package postinstall-postinstall --save-dev

or

yarn add patch-package postinstall-postinstall

2、修改package.json

在package.json 的scripts中加入 { "postinstall": "patch-package" },这是npm的一个钩子,会在依赖包被install之后执行

 【腾宇】postinstall-postinstall配合patch-package重写node_modules的依赖方法_第1张图片

3、修改node_modules中的代码

 【腾宇】postinstall-postinstall配合patch-package重写node_modules的依赖方法_第2张图片

4、生成patches

npx patch-package your-package-name(修改的npm包名称,我的是el-tree-transfer)

  【腾宇】postinstall-postinstall配合patch-package重写node_modules的依赖方法_第3张图片

5、提交patches后,重新install包你就会发现是你修改后的结果

如果发现npm install后,依赖恢复为没改之前,可以执行命令:npm run postinstall

运行效果如下

【腾宇】postinstall-postinstall配合patch-package重写node_modules的依赖方法_第4张图片

OK,搞定

你可能感兴趣的:(Vue,npm,vue,pack-package,node_modules,node)