Remove @_exported imports to prevent macro conflicts
- Changed Exports.swift to use regular imports instead of @_exported - This prevents ambiguous macro resolution issues in consuming apps
This commit is contained in:
parent
8e788ef212
commit
b3033c084a
@ -2,13 +2,10 @@
|
||||
// Exports.swift
|
||||
// Bedrock
|
||||
//
|
||||
// Re-exports for convenient importing.
|
||||
// Common imports for Bedrock.
|
||||
//
|
||||
|
||||
// Note: We import but don't re-export SwiftUI/Foundation to avoid
|
||||
// ambiguity issues with macros like #Preview when apps also import these.
|
||||
import SwiftUI
|
||||
|
||||
// Re-export SwiftUI for consumers who only import Bedrock
|
||||
@_exported import SwiftUI
|
||||
|
||||
// Re-export Foundation for common types
|
||||
@_exported import Foundation
|
||||
import Foundation
|
||||
|
||||
Loading…
Reference in New Issue
Block a user