小编典典

如何在 Yarn 中从 github repo 安装包

all

当我使用npm install fancyapps/fancybox#v2.6.1 --save时,将安装 v2.6.1 标签的 fancybox
包。文档中描述了此行为

我想问,如何做到这一点yarn

这个命令是正确的选择吗?在yarn
docs
中没有关于这种格式的任何内容。

yarn add fancyapps/fancybox#v2.6.1

阅读 93

收藏
2022-06-21

共1个答案

小编典典

您可以yarn通过指定远程 URL(HTTPS 或 SSH)将任何 Git 存储库(或 tarball)添加为依赖项:

yarn add <git remote url> installs a package from a remote git repository.
yarn add <git remote url>#<branch/commit/tag> installs a package from a remote git repository at specific git branch, git commit or git tag.
yarn add https://my-project.org/package.tgz installs a package from a remote gzipped tarball.

这里有些例子:

yarn add https://github.com/fancyapps/fancybox [remote url]
yarn add ssh://github.com/fancyapps/fancybox#3.0  [branch]
yarn add https://github.com/fancyapps/fancybox#5cda5b529ce3fb6c167a55d42ee5a316e921d95f [commit]

(注意:Fancybox v2.6.1 在 Git 版本中不可用。)

要同时支持 npm 和 yarn,可以使用 git+url 语法:

git+https://github.com/owner/package.git#commithashortagorbranch
git+ssh://github.com/owner/package.git#commithashortagorbranch
2022-06-21