Skip to content

Commit 33b40db

Browse files
committed
Publish library in Package.swift
1 parent d5348ac commit 33b40db

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Package.swift

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,18 @@ import PackageDescription
33

44
let package = Package(
55
name: "GraphQL",
6-
6+
7+
products: [
8+
.library(name: "GraphQL", targets: ["GraphQL"]),
9+
],
10+
711
dependencies: [
812
.package(url: "https://github.com/wickwirew/Runtime.git", .branch("swift-4.1")),
913
],
10-
14+
1115
targets: [
1216
.target(name: "GraphQL", dependencies: ["Runtime"]),
13-
17+
1418
.testTarget(name: "GraphQLTests", dependencies: ["GraphQL"]),
1519
]
1620
)

0 commit comments

Comments
 (0)