You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CLI should be able to use additional tokens for a single registry and separate them by scope. This is not currently possible. Meaning if you have public and private scoped packages on the same registry, you must use the same token for both.
Given the above .npmrc file the CLI should be able to run the following commands:
npm publish semver # would use TOKEN_A on https://registry.npmjs.org/
npm install @npmcorp/hello # would use TOKEN_B on https://registry.npmjs.org/
npm install @npm/hello # would use TOKEN_C for https://npm.pkg.github.com/
The text was updated successfully, but these errors were encountered:
Problem Statement
The CLI should be able to use additional tokens for a single registry and separate them by scope. This is not currently possible. Meaning if you have public and private scoped packages on the same registry, you must use the same token for both.
Possible Solution
.npmrc
Given the above
.npmrc
file the CLI should be able to run the following commands:The text was updated successfully, but these errors were encountered: