当我使用npm安装fancyapps/fancybox#v2.6.1——save时,fancybox v2.6.1标记包将被安装。这个行为在文档中有描述
我想问一下,如何用纱线来做这个?
这个命令是正确的替代方案吗?在yarn文档中没有任何关于这种格式的内容。
yarn add fancyapps/fancybox#v2.6.1
当我使用npm安装fancyapps/fancybox#v2.6.1——save时,fancybox v2.6.1标记包将被安装。这个行为在文档中有描述
我想问一下,如何用纱线来做这个?
这个命令是正确的替代方案吗?在yarn文档中没有任何关于这种格式的内容。
yarn add fancyapps/fancybox#v2.6.1
当前回答
对于ssh风格的url,只需在url之前添加ssh:
yarn add ssh://<whatever>@<xxx>#<branch,tag,commit>
其他回答
对于GitHub(或类似)私有存储库:
yarn add 'ssh://git@github.com:myproject.git#<branch,tag,commit>'
npm install 'ssh://git@github.com:myproject.git#<branch,tag,commit>'
对于ssh风格的url,只需在url之前添加ssh:
yarn add ssh://<whatever>@<xxx>#<branch,tag,commit>
您可以通过指定远程URL (HTTPS或SSH)将任何Git存储库(或tarball)添加为yarn的依赖项:
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
我在github存储库中使用这种简短的格式:
Yarn添加github_user/repository_name#commit_hash
纱2 +
在Yarn 2中,从远程url安装略有变化。具体来说,远程url必须以包名作为前缀。所以对于github这意味着:
yarn add '<package name>@https://github.com/<github user>/<github repo>'
确保<package name>匹配repo的包的"name"字段中的值。json文件。
通过URL片段添加head=<branch>或commit=<full commit hash>
yarn add '<package name>@https://github.com/<github user>/<github repo>#head=<branch name>'
如果你想从github上的Yarn monorepo中安装一个单独的包,你可以在URL片段中添加workspace=<包名>:
yarn add '<package name>@https://github.com/<github user>/<github repo>#head=<branch name>&workspace=<package name>'