I have a npm project that build with Azure DevOps Artifact feed.
Consider the following case:
Our project has a dependency on @openapitools/openapi-generator-cli v2.13.3. This package has a dependency “axios”: “^1.6.5”. Now, I want to update @openapitools/openapi-generator-cli v2.13.3 to v2.13.4. @openapitools/openapi-generator-cli v2.13.4 also has the dependency “axios”: “^1.6.5”. The latest version of axios in the public registry is 1.7.4, however, in our private feed, the latest version of axios is 1.6.8.
when I install @openapitools/openapi-generator-cli v2.13.4 with private feed connected, axios v1.6.8 is used.
So, the question is How can I install it with the latest version from the upstream source instead? and what is the best practice?
Kit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.