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 e396aa8 commit 75f96b4Copy full SHA for 75f96b4
lib/cli/index.js
@@ -5618,6 +5618,9 @@ export function mergeDependencies(
5618
}
5619
if (adep["dependsOn"]) {
5620
for (const eachDepends of adep["dependsOn"]) {
5621
+ if (!eachDepends){
5622
+ continue
5623
+ }
5624
if (parentRef) {
5625
if (eachDepends.toLowerCase() !== parentRef.toLowerCase()) {
5626
deps_map[adep.ref].add(eachDepends);
@@ -5630,6 +5633,9 @@ export function mergeDependencies(
5630
5633
if (adep["provides"]) {
5631
5634
providesFound = true;
5632
5635
for (const eachProvides of adep["provides"]) {
5636
+ if (!eachProvides){
5637
5638
5639
if (
5640
parentRef &&
5641
eachProvides.toLowerCase() !== parentRef.toLowerCase()
0 commit comments