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 0d92bf6 commit e13688bCopy full SHA for e13688b
Package.swift
@@ -51,3 +51,14 @@ for target in package.targets {
51
settings.append(.enableExperimentalFeature("StrictConcurrency=complete"))
52
target.swiftSettings = settings
53
}
54
+
55
+// --- STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //
56
+for target in package.targets {
57
+ if target.type != .plugin {
58
+ var settings = target.swiftSettings ?? []
59
+ // https://github.com/swiftlang/swift-evolution/blob/main/proposals/0444-member-import-visibility.md
60
+ settings.append(.enableUpcomingFeature("MemberImportVisibility"))
61
+ target.swiftSettings = settings
62
+ }
63
+}
64
+// --- END: STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //
0 commit comments