web-dev-qa-db-ja.com

Yarnのgithub repoからパッケージをインストールする方法

npm install fancyapps/fancybox#v2.6.1 --saveを使用すると、v2.6.1タグのfancyboxパッケージがインストールされます。この振る舞いは docs で説明されています。

私はyarnを使ってこれをどのようにしたらよいのでしょうか?

このコマンドは正しい選択ですか? In yarn docs このフォーマットについては何もありません。

yarn add fancyapps/fancybox#v2.6.1

90
Silver Zachara
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.

2.6.1はfancybox gitバージョンでは使用できません

yarn add https://github.com/fancyapps/fancybox [remote url]

yarn add  https://github.com/fancyapps/fancybox#3.0  [branch]

yarn add https://github.com/fancyapps/fancybox#5cda5b529ce3fb6c167a55d42ee5a316e921d95f [commit]
131
Kasiriveni

SshスタイルのURLの場合は、URLの前にsshを追加するだけです。

yarn add ssh://<whatever>@<xxx>#<branch,tag,commit>
13
Tyler

これはここで説明されています。 https://yarnpkg.com/en/docs/cli/add#toc-adding-dependencies

例えば:

yarn add https://github.com/novnc/noVNC.git#0613d18
9
lanwen

GitHub(または同様の)プライベートリポジトリの場合:

yarn add 'ssh://[email protected]:myproject.git#<branch,tag,commit>'
npm install 'ssh://[email protected]:myproject.git#<branch,tag,commit>'
3
Eduardo Cuomo