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 c73c0b8 commit a25a0e6Copy full SHA for a25a0e6
lib/cli/index.js
@@ -5594,6 +5594,9 @@ export function mergeDependencies(
5594
}
5595
if (adep["dependsOn"]) {
5596
for (const eachDepends of adep["dependsOn"]) {
5597
+ if (!eachDepends){
5598
+ continue
5599
+ }
5600
if (parentRef) {
5601
if (eachDepends.toLowerCase() !== parentRef.toLowerCase()) {
5602
deps_map[adep.ref].add(eachDepends);
@@ -5606,6 +5609,9 @@ export function mergeDependencies(
5606
5609
if (adep["provides"]) {
5607
5610
providesFound = true;
5608
5611
for (const eachProvides of adep["provides"]) {
5612
+ if (!eachProvides){
5613
5614
5615
if (
5616
parentRef &&
5617
eachProvides.toLowerCase() !== parentRef.toLowerCase()
0 commit comments