Open huangshuwei opened 3 years ago
打包组件库或者工具库时,我们会将 vue、react、angular 排除打包文件外,而是希望用户使用时自己安装。这时就需要 peerDependencies了。
peerDependencies
只有在发布库文件时才会用到
externals
作用 告诉用户,你使用我的库,还需要具备 vue、react、angular 等环境。在peerDependencies 里的依赖,用户在安装的时候会自动安装
添加 peerDependencies 依赖命令
yarn add <package...> [--peer/-P]
完
前言
打包组件库或者工具库时,我们会将 vue、react、angular 排除打包文件外,而是希望用户使用时自己安装。这时就需要
peerDependencies
了。各种 dependencies 的比较
externals
排除在打包库文件之外的依赖。比如 vue、react、angularpeerDependencies
作用 告诉用户,你使用我的库,还需要具备 vue、react、angular 等环境。在peerDependencies 里的依赖,用户在安装的时候会自动安装
添加 peerDependencies 依赖命令
参考
完