Forked from ThallyssonKlein/How to consume Github Package private registry with yarn?
Created
October 28, 2022 04:01
-
-
Save sankar4n/e21868a4ec770363748e3849b3fada98 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# How to consume Github Package private registry with yarn? | |
Create an .npmrc file in the same location as the package.json with this content. | |
``` | |
registry=https://registry.yarnpkg.com/ | |
@<username>:registry=https://npm.pkg.github.com | |
//npm.pkg.github.com/:_authToken=<your auth token> | |
always-auth=true | |
``` | |
## How to get the token? | |
https://github.com/settings/tokens |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment