node.jsyarnpkg

how to install specific branch of git repository using yarn?


I am able to install one GitHub package but not other using yarn. Please let me know what could be the issue here.

I can add https://github.com/fancyapps/fancybox#3.0 but not https://github.com/opentripplanner/otp-react-redux#result-post-processor

ravis-MacBook-Pro:gitprojects ******$ mkdir test
ravis-MacBook-Pro:gitprojects ******$ cd test
ravis-MacBook-Pro:test ***********$ yarn init
yarn init v1.6.0
question name (test): 
question version (1.0.0): 
question description: 
question entry point (index.js): 
question repository url: 
question author: 
question license (MIT): 
question private: 
success Saved package.json
āœØ  Done in 11.54s.

ravis-MacBook-Pro:test ******$ yarn add https://github.com/fancyapps/fancybox#3.0
yarn add v1.6.0
info No lockfile found.
[1/4] šŸ”  Resolving packages...
[2/4] šŸšš  Fetching packages...
[3/4] šŸ”—  Linking dependencies...
warning " > @fancyapps/fancybox@3.0.48" has unmet peer dependency "jquery@>=1.9.0".
[4/4] šŸ“ƒ  Building fresh packages...
success Saved lockfile.
success Saved 1 new dependency.
info Direct dependencies
ā””ā”€ @fancyapps/fancybox@3.0.48
info All dependencies
ā””ā”€ @fancyapps/fancybox@3.0.48
āœØ  Done in 1.35s.


ravis-MacBook-Pro:test *******$ yarn add https://github.com/opentripplanner/otp-react-redux#result-post-processor
yarn add v1.6.0
[1/4] šŸ”  Resolving packages...
error Can't add "otp-react-redux": invalid package version undefined.
info Visit https://yarnpkg.com/en/docs/cli/add for documentation about this command.
ravis-MacBook-Pro:test *******$ 

Solution

  • You need use you git remote url and specify branch after hash(#).

    yarn add https://github.com/opentripplanner/otp-react-redux.git#result-post-processor
    

    installs a package from a remote git repository at specific git branch, git commit or git tag.

    yarn add <git remote url>#<branch/commit/tag>

    enter image description here