Skip to content

Commit

Permalink
Merge branch 'main' into runtime_error_codes
Browse files Browse the repository at this point in the history
  • Loading branch information
gayathrisairam authored Dec 18, 2024
2 parents 0a6ed3f + 0946588 commit 29f3d65
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,14 @@ let package = Package(
),
]
)

// --- STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //
for target in package.targets {
if target.type != .plugin {
var settings = target.swiftSettings ?? []
// https://github.com/swiftlang/swift-evolution/blob/main/proposals/0444-member-import-visibility.md
settings.append(.enableUpcomingFeature("MemberImportVisibility"))
target.swiftSettings = settings
}
}
// --- END: STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- //

0 comments on commit 29f3d65

Please sign in to comment.