Skip to content

Commit

Permalink
Comment out Vapor dependency and test target, as they're interfering …
Browse files Browse the repository at this point in the history
…with DocC!
  • Loading branch information
JacobSyndeo committed Feb 7, 2024
1 parent 5321e43 commit 82d12b8
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,21 @@ let package = Package(
targets: ["Ether"]),
],
dependencies: [
.package(url: "https://github.com/vapor/vapor", .upToNextMajor(from: "4.0.0")),
// .package(url: "https://github.com/vapor/vapor", .upToNextMajor(from: "4.0.0")),
.package(url: "https://github.com/themomax/swift-docc-plugin", branch: "add-extended-types-flag")
],
targets: [
// 🎆 Ether
.target(name: "Ether",
swiftSettings: [.unsafeFlags(["-emit-extension-block-symbols"])]
),
.testTarget(
name: "EtherTests",
dependencies: ["Ether",
.product(name: "Vapor", package: "vapor"),
],
resources: [.copy("Resources/你好.jpeg")
]),
// Commented out, as Vapor currently interferes with our documentation builder…!
// .testTarget(
// name: "EtherTests",
// dependencies: ["Ether",
// .product(name: "Vapor", package: "vapor"),
// ],
// resources: [.copy("Resources/你好.jpeg")
// ]),
]
)

0 comments on commit 82d12b8

Please sign in to comment.