Xerol Wong

Results 4 comments of Xerol Wong

But the generated BUILD file for `swift-perception` seems to be correct ``` bazel swift_compiler_plugin( name = "Sources_PerceptionMacros", defines = ["SWIFT_PACKAGE"], deps = [ "@swiftpkg_swift_syntax//:Sources_SwiftSyntaxMacros", "@swiftpkg_swift_syntax//:Sources_SwiftCompilerPlugin", ], module_name = "PerceptionMacros", srcs...

@luispadron They do not use Observation directly, but are using [Store / StoreOf](https://github.com/pointfreeco/swift-composable-architecture/blob/main/Sources/ComposableArchitecture/Observation/Store%2BObservation.swift) or [ObservableState](https://github.com/pointfreeco/swift-composable-architecture/blob/main/Sources/ComposableArchitecture/Observation/ObservableState.swift). TCA supports both `swift-perception` and `Observation` in its unified API. Actually, if you create a...

I have found the cause. Xcode and Swift Package Manager are able to build it because the `Package.swift` in `swift-perception` specifies the target platforms as follows: ``` platforms: [ .iOS(.v13),...

In my opinion, users would hope that as long as a dependency can run successfully in SPM, it can be converted to Bazel through this project. Therefore, I believe we...