답변:
yarn
원격 URL (HTTPS 또는 SSH)을 지정하여 Git 리포지토리 (또는 tarball)를 종속성으로 추가 할 수 있습니다 .
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 버전에서 사용할 수 없습니다.)
yarn add https://github.com/fancyapps/fancybox.git#semver:^3.0
최신 메이저 버전 인 현재 3.5.7을 가져옵니다.
git
. 예를 들면 :yarn add ssh://git@github.com/fancyapps/fancybox#3.0
이것은 여기에 설명되어 있습니다 : https://yarnpkg.com/en/docs/cli/add#toc-adding-dependencies
예를 들면 다음과 같습니다.
yarn add https://github.com/novnc/noVNC.git#0613d18
대한 GitHub의 (또는 유사) 개인 저장소 :
yarn add 'ssh://git@github.com:myproject.git#<branch,tag,commit>'
npm install 'ssh://git@github.com:myproject.git#<branch,tag,commit>'