1. ホーム
  2. node.js

[解決済み】Yarnでgithubのレポからパッケージをインストールする方法

2022-04-16 02:23:22

質問

を使用する場合 npm install fancyapps/fancybox#v2.6.1 --save そのため、v2.6.1 の fancybox パッケージがインストールされます。この動作は ドキュメント

このようなことを行うには yarn ?

このコマンドは正しい選択肢なのでしょうか?で ヤーン・ドックス は、このフォーマットについては何も書いてありません。

yarn add fancyapps/fancybox#v2.6.1

解決方法は?

任意のGitリポジトリ(あるいはtarball)を依存関係として yarn リモートURL(HTTPSまたはSSH)を指定することで。

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