I have a private packages feed on Azure DevOps (formerly VSTS) with a few packages.
I have a project configured (through .npmrc) to use that feed. vsts-npm-auth -config .npmrc
(to configure auth for npm with the feed) completed with success.
If I run npm install, the modules installation runs successfully.
If I delete the node modules folder, the package lock and run pnpm install instead I get a 401 Unauthorized
error.
Computer is running windows 10 (latest public ring).
My question is: how to configure pnpm to run properly with an azure devops private feed?
0
votes
.npmrc
and works with the auth tokens specified there. Maybe pnpm cannot find the global npmrc file for some reason? – Zoltan Kochan