You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, we recently upgraded our toolchain to Xcode 13.3 and as such have run into the breaking change with Swift 5.6 regarding undocumented changes and not using --module. As mentioned in #1306 , using Sourcekitten json works with --module. However this doesn't (logically) work when using multiple Sourcekitten files from multiple modules as advised in issues such as #1194 and #564 . Is there a new way to achieve this workflow now with Swift 5.6?
Example:
jazzy --module AppLock --sourcekitten-sourcefile AppLock.json,Badging.json
98% documentation coverage with 4 undocumented symbols
included 257 internal, public, or open symbols
skipped 83 private or fileprivate symbols (use `--min-acl` to specify a different minimum ACL)
building site
building search index
jam out ♪♫ to your fresh new docs in `docs`
jazzy --module Badging --sourcekitten-sourcefile AppLock.json,Badging.json
99% documentation coverage with 2 undocumented symbols
included 255 internal, public, or open symbols
skipped 83 private or fileprivate symbols (use `--min-acl` to specify a different minimum ACL)
building site
building search index
jam out ♪♫ to your fresh new docs in `docs`
The text was updated successfully, but these errors were encountered:
(I think I got the quoting right, seems to work for me, hope intention is clear enough)
...this lets jazzy work by associating all the decls with the 'implicit' module -- with the 5.6 change it gets harder to fool jazzy into thinking it's dealing with just one module.
Hello, we recently upgraded our toolchain to Xcode 13.3 and as such have run into the breaking change with Swift 5.6 regarding undocumented changes and not using
--module
. As mentioned in #1306 , using Sourcekitten json works with--module
. However this doesn't (logically) work when using multiple Sourcekitten files from multiple modules as advised in issues such as #1194 and #564 . Is there a new way to achieve this workflow now with Swift 5.6?Example:
The text was updated successfully, but these errors were encountered: