We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have two registries under consideration . registry one: https://npm.example.com/ registry registry two: https://npm.client.com/
So most of dependencies are installed from the first registry. But for one dependency Eg: icons , this should be picked from another URL.
In my package.json
"dependencies": { "@angular/animations": "11.2.14", "@angular/cdk": "11.2.13", // and so on "icons-library":"1.0.0" }
So here only for icons-library i need it to look for another registry URL. ie https://npm.client.com/
I have tried
yarn install yarn config set icons-library https://npm.client.com yarn install
But this doesn't seem to be working.
Any corrections or recommendations are welcome. TIA
The text was updated successfully, but these errors were encountered:
I have two registries under consideration . registry one: https://npm.example.com/ registry registry two: https://npm.client.com/ So most of dependencies are installed from the first registry. But for one dependency Eg: icons , this should be picked from another URL. In my package.json "dependencies": { "@angular/animations": "11.2.14", "@angular/cdk": "11.2.13", // and so on "icons-library":"1.0.0" } So here only for icons-library i need it to look for another registry URL. ie https://npm.client.com/ I have tried yarn install yarn config set icons-library https://npm.client.com yarn install But this doesn't seem to be working. Any corrections or recommendations are welcome. TIA
I solved it by modifying/deleting yarn.lock file.
reference: #4862
Sorry, something went wrong.
No branches or pull requests
I have two registries under consideration .
registry one: https://npm.example.com/ registry
registry two: https://npm.client.com/
So most of dependencies are installed from the first registry. But for one dependency Eg: icons , this should be picked from another URL.
In my package.json
So here only for icons-library i need it to look for another registry URL. ie https://npm.client.com/
I have tried
But this doesn't seem to be working.
Any corrections or recommendations are welcome. TIA
The text was updated successfully, but these errors were encountered: