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
support change registry in command line.
and also can get registry from npmrc/yarnrc
The text was updated successfully, but these errors were encountered:
As I test, taze already support specify the registry via .npmrc.
.npmrc
In my opinion, it's not very useful to specify registry via command line options.
export async function getPackageData(name: string): Promise<PackageData> { // ... try { debug.resolve(`resolving ${name}`) const npmConfig = await getNpmConfig() // .npmrc -> npmConfig const data = await pacote.packument(name, { ...npmConfig, fullMetadata: true }) // ... } catch (e) { error = e } // ... }
Sorry, something went wrong.
No branches or pull requests
support change registry in command line.
and also can get registry from npmrc/yarnrc
The text was updated successfully, but these errors were encountered: