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
multi command packages: The package specifier (e.g. Assist) is used to build the package. It has to be checked using (xcodebuild -list -json) which are the targets and if there is a <target-name>-Package which can build the documentation for them all
packages for macOS targets: The destination is hardcoded inside the script for iOS it should be passed and handled correctly in the release script
swift package plugin --list
# ‘generate-documentation’ (plugin ‘Swift-DocC’ in package ‘SwiftDocCPlugin’)
# ‘preview-documentation’ (plugin ‘Swift-DocC Preview’ in package ‘SwiftDocCPlugin’)
swift package preview-documentation
# Note: The Swift-DocC Preview plugin requires passing the '--disable-sandbox' flag
swift package--disable-sandbox preview-documentation
The text was updated successfully, but these errors were encountered:
ToDo
The script currently cannot deal with:
xcodebuild -list -json
) which are the targets and if there is a<target-name>-Package
which can build the documentation for them allAn exmple would be to integrate the official DocC PLugin with SPM:
The text was updated successfully, but these errors were encountered: