Kyle
Kyle
谢谢作者啦
Something like ```swift public protocol Content { associatedtype Body : Content @ContentBuilder var body: Self.Body { get } } public protocol Page: GlobalElement { @ContentBuilder var body: some Content {...
> @Kyle-Ye sorry for not getting around to it. The long term goal is to move both the toolbox and Vapor itself over to using Swift Argument Parser. However I...
It's such a common feature to support colorful output. I maintain a CLI tool in my company and also use Swift Argument Parser as a start point. To support colorful...
I was also confused about this.And now I totally agree with you.Thanks
A temp workaround is to disable the testTarget in the A Package. See Minimum reproducible environment [FolderTest.zip](https://github.com/feedback-assistant/reports/files/8249795/FolderTest.zip)
+1. (Encountered the issue when refactoring to swift-concurrency) Neither `MainActor.run { alert.runModal() }`, `Task { await alert.runModal() }` and `Task { @MainActor alert.runModal()}` works for me. The same crash and...
By the way, in addition to `NSAlert`, `NSOpenPanel` and other `NSView` containing `runModal` methods will also crash for the same reason The same approach could be applied 👇 ```swift extension...
For many times, I got error here. Do you think we can have a better solution for this usage? Also currently implementation does not support godot-swift to be a local...
> i’m not sure why this is failing, it probably has to do with the plugin being written for a very old version of SPM. i’d have to look into...