Vous pouvez ajouter n'importe quel dépôt Git (ou tarball) comme dépendance à yarn
en spécifiant l'URL distante (soit HTTPS, soit 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.
Voici quelques exemples :
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]
(Note : Fancybox v2.6.1 n'est pas disponible dans la version Git).
Pour prendre en charge à la fois npm et yarn, vous pouvez utiliser la syntaxe git+url :
git+https://github.com/owner/package.git#commithashortagorbranch
git+ssh://github.com/owner/package.git#commithashortagorbranch