使用 VSTS 管理 NPM 包

NPM packages management using VSTS

我在使用包管理源发布 npm 包时遇到问题。

>vsts-npm-auth -config .npmrc


vsts-npm-auth v0.25.0.0
----------------------
Creating npmrcFile. Path: H:\.npmrc
Getting new credentials for source:https://########.pkgs.visualstudio.com/_packaging/########/npm/registry/, scope:vso.packaging_write vso.drop_write


>npm publish
...

npm ERR! need auth auth required for publishing
npm ERR! need auth You need to authorize this machine using `npm adduser`

我在这里错过了什么?

解决方案是将 .npmrc 文件移动到用户文件夹。

.npmrc 文件(带有“_authToken”)由 vsts-npm-auth -config .npmrc 生成在 H: 驱动器中。

我手动将其移动到用户文件夹,以便使 npm publish 正常工作。