We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b86bf7c commit 9abe851Copy full SHA for 9abe851
Package.swift
@@ -26,14 +26,16 @@ let moduleTargets = modules.map {
26
Target.target(
27
name: $0.name,
28
dependencies: $0.dependencies.map { Target.Dependency.target(name: $0) },
29
- path: "Sources/\($0.name)",
30
- swiftSettings: [
31
- .unsafeFlags([
32
- "-emit-symbol-graph",
33
- "-emit-symbol-graph-dir",
34
- ".build/symbol-graphs/\($0.name)",
35
- ])
36
- ]
+ path: "Sources/\($0.name)"
+ // These are required for documentation generation, but SwiftPM will not allow
+ // other user to depend on us, so they are commented out.
+ // swiftSettings: [
+ // .unsafeFlags([
+ // "-emit-symbol-graph",
+ // "-emit-symbol-graph-dir",
+ // ".build/symbol-graphs/\($0.name)",
37
+ // ])
38
+ // ]
39
)
40
}
41
0 commit comments