Skip to content

Commit 07d7a7f

Browse files
committed
Commit via running ake Package.swift
1 parent 84bd8ba commit 07d7a7f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Package.swift

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ let package = Package(
3939
.library(name: "GitHubRestAPICode_Scanning", targets: ["GitHubRestAPICode_Scanning"]),
4040
.library(name: "GitHubRestAPISecurity_Advisories", targets: ["GitHubRestAPISecurity_Advisories"]),
4141
.library(name: "GitHubRestAPIIssues", targets: ["GitHubRestAPIIssues"]),
42+
.library(name: "GitHubRestAPIDocumentation.Docc", targets: ["GitHubRestAPIDocumentation.Docc"]),
43+
.library(name: "GitHubRestAPI_Resources", targets: ["GitHubRestAPI_Resources"]),
4244
.library(name: "GitHubRestAPIApps", targets: ["GitHubRestAPIApps"]),
4345
.library(name: "GitHubRestAPIGists", targets: ["GitHubRestAPIGists"]),
4446
.library(name: "GitHubRestAPIBilling", targets: ["GitHubRestAPIBilling"]),
@@ -285,6 +287,22 @@ let package = Package(
285287
],
286288
path: "Sources/issues"
287289
),
290+
.target(
291+
name: "GitHubRestAPIDocumentation.Docc",
292+
dependencies: [
293+
.product(name: "OpenAPIRuntime", package: "swift-openapi-runtime"),
294+
.product(name: "OpenAPIURLSession", package: "swift-openapi-urlsession"),
295+
],
296+
path: "Sources/Documentation.docc"
297+
),
298+
.target(
299+
name: "GitHubRestAPI_Resources",
300+
dependencies: [
301+
.product(name: "OpenAPIRuntime", package: "swift-openapi-runtime"),
302+
.product(name: "OpenAPIURLSession", package: "swift-openapi-urlsession"),
303+
],
304+
path: "Sources/_Resources"
305+
),
288306
.target(
289307
name: "GitHubRestAPIApps",
290308
dependencies: [

0 commit comments

Comments
 (0)