You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gradle-plugins/react/brownfield/src/main/kotlin/com/callstack/react/brownfield/expo/ExpoPublishingHelper.kt
+11-30Lines changed: 11 additions & 30 deletions
Original file line number
Diff line number
Diff line change
@@ -384,38 +384,19 @@ open class ExpoPublishingHelper(val brownfieldAppProject: Project) {
384
384
pkgProject:Project,
385
385
dependencies:VersionMediatingDependencySet,
386
386
) {
387
-
pkgProject.configurations
388
-
.filter { cfg ->
389
-
setOf(
390
-
"test",
391
-
"androidTest",
392
-
"kapt",
393
-
"annotationProcessor",
394
-
"lint",
395
-
"detached",
396
-
).none {
397
-
cfg.name.contains(it, ignoreCase =true)
398
-
}
399
-
}
400
-
.filter { cfg ->
401
-
setOf("implementation", "api").any {
402
-
cfg.name.contains(it, ignoreCase =true)
387
+
listOf("implementation", "api").forEach {
388
+
pkgProject.configurations.getByName(it).dependencies.forEach { dep ->
0 commit comments