I created an .npmrc file that configured my to work with VSTS pacakge feed, but all my public dependencies won't install (you know, react, lodash ...)
Seems like once I configure .npmrc file to point to my private feed, all public packages are no longer accessible.
since npm, contrary to Nuget, does not support multiple package registries (here's a related SA question), i'm currently stuck with running npm install twice - once without and .npmrc file to get the public dependencies, and once with the .npmrc file to get the private.
Doesn't VSTS mirror / proxy the public registry? if not - am I expected to run npm install twice with 2 differenct versions of the .npmrc file?
@scope/package
. I then configured my .npmrc to point to the vsts pacckage feed only for my@scope
. so public packages would go to npmhs and my packages will go to my private vsts feed. – rony l