Cannot `npm install` in `get_user_profile` because of internal Spotify Artifactory links
Opened this issue · 0 comments
simonhaenisch commented
The package-lock.json
resolves tarballs to internal artifactory.spotify.net
links that can't be reached by the public, e.g.
This causes npm install
to get stuck.
You should probably:
rm package-lock.json
npm_config_registry="https://registry.npmjs.org/" npm install
To regenerate the lock-file with usable tarball URLs (and to not potentially leak implementation details of your internal Artifactory setup to the public 🤓).