I have a project with dependency on some private repo (fontawesome) for which our org has taken a license
While all the other packages are installed via our internal registry, the fontawesome dependency is installed via npm.fontawesome.com
So, in my .npmrc
, I have the following
registry=http://frs-mycompname.net
proxy=http://approxy.mycompname.net:8080
https-proxy=http://approxy.mycompname.net:8080
@fortawesome:registry=https://npm.fontawesome.com/
//npm.fontawesome.com/:_authToken=TOKEN
As you can see, there is a proxy defined as well. While other dependencies download fine, for some reasons, I am unable to install the fontawesome dependency at all.
The auth key is fine (checked with someone else who has the same key)
Is there any way by which I can verify if something might be blocking access to the fontawesome registry URL ? How can I verify the same using any command or something?