huangshuwei / blog

🈲黄书伟的个人博客
54 stars 8 forks source link

peerDependencies-对等依赖 #47

Open huangshuwei opened 3 years ago

huangshuwei commented 3 years ago

前言

打包组件库或者工具库时,我们会将 vue、react、angular 排除打包文件外,而是希望用户使用时自己安装。这时就需要 peerDependencies了。

只有在发布库文件时才会用到

各种 dependencies 的比较

peerDependencies

作用 告诉用户,你使用我的库,还需要具备 vue、react、angular 等环境。在peerDependencies 里的依赖,用户在安装的时候会自动安装

添加 peerDependencies 依赖命令

yarn add <package...> [--peer/-P]

参考