Rauhul Varma

Results 119 comments of Rauhul Varma

> Perhaps something like > > ```swift > > swiftSettings: [ > > .define("APPLE", .when(platforms: [Platform.macOS, Platform.iOS, Platform.watchOS, Platform.tvOS, Platform.visionOS])), > > ``` > > > > in the package...

> Wouldn't it be better to use `canImport(Darwin)`? > > > > Especially since a lot of these are literally guarding imports of the `Darwin` module and uses of symbols...

@compnerd any ideas here? All of the errors listed here seem wrong The warnings about `@_implementationOnly` are correct and that should be removed in favor of import acls

Correct the use of implementation only was to avoid leaking api, but it also can produce complete broken code for non resilient libraries. > The fatal error is related to...

I think this is an SPM issue, the SAP git tree certainly has `9f39744e025c7d377987f30b03770805dcb0bcd1`: ```shell commit 9f39744e025c7d377987f30b03770805dcb0bcd1 (tag: 1.1.4) Author: Rauhul Varma Date: Fri Aug 26 20:30:47 2022 -0700 Update...

Definitely a bug, I haven't taken a look at the command cluster support (e.g. `git-x` invocable as `git x`) code in a while so I'm not sure how much work...

I'm not fully convinced this is a readability improvement over the valid options appearing below. IMO the synopsis should be succinct and the options below should contain the details.

@DougGregor I'm not sure about the Swift project's policy regarding CI with Github Actions currently, could you chime in?

I dont see any issues using the same toolchain. Are you sure you have enabled the it properly? That error is also specific to swift 5.9.x, if I recall correctly:...

So this is not fully supported (yet) but what about `swift package init --experimental-dump-help` the output of which can be parsed via `swift-argument-parser`'s `ArgumentParserToolInfo`. cc @natecook1000