-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove custom documentation generate script
- Loading branch information
Showing
3 changed files
with
35 additions
and
30 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// swift-tools-version:5.6 | ||
/* | ||
This source file is part of the Swift.org open source project | ||
Copyright (c) 2023 Apple Inc. and the Swift project authors | ||
Licensed under Apache License v2.0 with Runtime Library Exception | ||
See https://swift.org/LICENSE.txt for license information | ||
See https://swift.org/CONTRIBUTORS.txt for Swift project authors | ||
*/ | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "Documentation", | ||
dependencies: [ | ||
.package(name: "SymbolKit", path: "../."), | ||
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.3.0"), | ||
], | ||
targets: [ | ||
.target( | ||
name: "Empty", | ||
dependencies: [ | ||
.product(name: "SymbolKit", package: "SymbolKit"), | ||
], | ||
path: "Empty" | ||
) | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters