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 971a880 commit cce59a6Copy full SHA for cce59a6
1 file changed
npm/private/npm_translate_lock_helpers.bzl
@@ -405,9 +405,9 @@ ERROR: can not apply both `pnpm.patchedDependencies` and `npm_translate_lock(pat
405
406
# gather all of the importers (workspace packages) that this npm package should be linked at which names
407
link_packages = {}
408
- for import_path, links in importer_links.items():
+ for links in importer_links.values():
409
linked_packages = links["packages"]
410
- link_names = linked_packages.get(package_key, [])
+ link_names = linked_packages.get(package_key)
411
if link_names:
412
link_packages[links["link_package"]] = link_names
413
0 commit comments