We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ff117d commit b7b85bbCopy full SHA for b7b85bb
src/config-utils.ts
@@ -885,8 +885,8 @@ export function parseRegistriesWithoutCredentials(
885
registriesInput?: string,
886
): RegistryConfigNoCredentials[] | undefined {
887
return parseRegistries(registriesInput)?.map((r) => {
888
- const { token: _, ...registryWithoutCredentials } = r;
889
- return registryWithoutCredentials;
+ const { url, packages } = r;
+ return { url, packages };
890
});
891
}
892
0 commit comments