如何postinstall优雅地更改node_modules里的包

Posted 飞翔的熊blabla

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何postinstall优雅地更改node_modules里的包相关的知识,希望对你有一定的参考价值。

在前端项目开发中,我们经常会遇到node_modules里的包有问题,当自己手动更改成正确的后,自己没问题了,但是别人重新npm install时还会有同样的问题,那么如何将node_modules的更改保存到项目中呢,这样别人在生成依赖后能有一个正常的环境

通过:

patch-package​www.npmjs.com/package/patch-package正在上传…重新上传取消

这个包可以在npm install后按照项目里保存的更改自动修改node_modules,非常好用

使用步骤:

一.安装

可以使用npm

 npm i patch-package -D

或yarn(postinstall-postinstall 确保在yarn remove时依旧能保持更正代码)

 yarn add patch-package postinstall-postinstall

二.设置

安装完后需要给package.json设置postinstall,在安装完node_modules后会自动执行

"scripts":    
  "postinstall": "patch-package" 

三.使用

  • 修改node_modules的内容
  • npx patch-package 修改的包名(执行完成后,会在项目目录生成一个文件夹,保存着此次修改的内容)
  • 通过git推到远程仓库,这样其他小伙伴也可以用了

以上是关于如何postinstall优雅地更改node_modules里的包的主要内容,如果未能解决你的问题,请参考以下文章

过时的实现如何优雅地处理新版本的 OpenType 字体?

如何优雅地将 ember 哈希位置重定向到历史位置

优雅重启 django-q qcluster

如何使用 postinstall 编辑 package.json

Glass:如何优雅地退出主菜单

Kubernetes 中如何保证优雅地停止 Pod