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