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 61ec6b6 commit e35d6c1Copy full SHA for e35d6c1
Package.swift
@@ -147,3 +147,13 @@ let package = Package(
147
),
148
]
149
)
150
+
151
+// --- STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //
152
+for target in package.targets {
153
+ if target.type != .plugin {
154
+ var settings = target.swiftSettings ?? []
155
+ // https://github.com/swiftlang/swift-evolution/blob/main/proposals/0444-member-import-visibility.md
156
+ settings.append(.enableUpcomingFeature("MemberImportVisibility"))
157
+ target.swiftSettings = settings
158
+ }
159
+}// --- END: STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //
0 commit comments