We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6f77d9 commit df4fddaCopy full SHA for df4fdda
1 file changed
Package.swift
@@ -1,5 +1,19 @@
1
+// swift-tools-version:4.0
2
import PackageDescription
3
4
+// Note: SPM support is broken until we can add dependency on UIKit.
5
+
6
let package = Package(
- name: "Reusable"
7
+ name: "Reusable",
8
+ products: [
9
+ .library(name: "Reusable", targets: ["Reusable"])
10
+ ],
11
+ targets: [
12
+ .target(
13
14
+ path: "",
15
+ sources: ["Sources"]
16
+ )
17
18
+ swiftLanguageVersions: [3, 4]
19
)
0 commit comments