Skip to content

Commit 0b1a301

Browse files
committed
Fix prettier violations
1 parent a1e775f commit 0b1a301

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/utils/Processing.ts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -444,19 +444,19 @@ export async function loadAutomaticDependencies(
444444
// Gather all automatic dependencies matching this priority, substituting matching configured dependencies where applicable
445445
const automaticDependencies = uniqWith(
446446
AUTOMATIC_DEPENDENCIES.filter(ad => ad.priority === priority)
447-
.map(autoDep => {
448-
const configuredDeps = configuredDependencies.filter(configuredDep =>
449-
configuredDependencyMatchesAutomaticDependency(configuredDep, autoDep)
450-
);
451-
if (configuredDeps.length) {
452-
// Prefer configured dependencies over automatic dependencies
453-
return configuredDeps;
454-
} else if (autoDep.fhirVersions && !autoDep.fhirVersions.includes(fhirVersionName)) {
455-
// Skip automatic dependencies not intended for this version of FHIR
456-
return [];
457-
}
458-
return autoDep;
459-
})
447+
.map(autoDep => {
448+
const configuredDeps = configuredDependencies.filter(configuredDep =>
449+
configuredDependencyMatchesAutomaticDependency(configuredDep, autoDep)
450+
);
451+
if (configuredDeps.length) {
452+
// Prefer configured dependencies over automatic dependencies
453+
return configuredDeps;
454+
} else if (autoDep.fhirVersions && !autoDep.fhirVersions.includes(fhirVersionName)) {
455+
// Skip automatic dependencies not intended for this version of FHIR
456+
return [];
457+
}
458+
return autoDep;
459+
})
460460
.flat(),
461461
isEqual
462462
);

0 commit comments

Comments
 (0)