Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 892c4c2

Browse files
committedDec 10, 2024·
Enable MemberImportVisibility check on all targets
1 parent 350450f commit 892c4c2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎Package.swift

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,9 @@ for target in package.targets {
6363
settings.append(.enableExperimentalFeature("StrictConcurrency=complete"))
6464
target.swiftSettings = settings
6565
}
66+
67+
for target in package.targets {
68+
var settings = target.swiftSettings ?? []
69+
settings.append(.enableUpcomingFeature("MemberImportVisibility"))
70+
target.swiftSettings = settings
71+
}

0 commit comments

Comments
 (0)
Please sign in to comment.