web-dev-qa-db-fra.com

Comment installer un paquet depuis le repo github dans Yarn

Quand j'utilise npm install fancyapps/fancybox#v2.6.1 --save, le paquet fancybox à v2.6.1 sera installé Ce comportement est décrit dans docs

Je veux demander, comment faire cela avec yarn?

Cette commande est-elle la bonne alternative? Dans yarn docs n’a rien à voir avec ce format.

yarn add fancyapps/fancybox#v2.6.1

65
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 is not avaliable in fancybox git version

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]
101
Kasiriveni

Pour les URL de style SSH, ajoutez simplement SSH avant l'URL:

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

Ceci est décrit ici: https://yarnpkg.com/fr/docs/cli/add#toc-adding-dependencies

Par exemple:

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

Pour GitHub (ou similaire) référentiel privé:

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