We use artifactory as a our internal npm repository. It mirrors npmjs.org and also allow us to push internal npm packages to it.
However, when we do a clean install/build using tns build android the nativescript-cli itself starts a http client to pull the tns-android package from npmjs.org:
|
const url = `https://registry.npmjs.org/${packageName}`; |
this does not work for us.
Ideally, inside the getRegistryPackageData the registry to use should be read from the npm config (.npmrc)