Skip to content

Commit

Permalink
fix: package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
chrwendt committed Feb 25, 2020
1 parent 3ad2334 commit 8d4657d
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,24 @@ import PackageDescription

let package = Package(
name: "SheetyColors",
dependencies: [
.package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.40.11"),
.package(url: "https://github.com/Realm/SwiftLint", from: "0.34.0"),
.package(url: "https://github.com/orta/Komondor", from: "1.0.4"),
.package(url: "https://github.com/eneko/SourceDocs.git", from: "0.5.1"),
.package(url: "https://github.com/chrs1885/Capable.git", from: "1.1.3"),
.package(url: "https://github.com/Quick/Quick.git", from: "2.1.0"),
.package(url: "https://github.com/Quick/Nimble.git", from: "8.0.2")
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git", from: "1.5.0"),
platforms: [
.iOS(.v11),
],
products: [
.library(
name: "SheetyColors",
targets: ["SheetyColors"])
targets: ["SheetyColors"]
)
],
dependencies: [
.package(url: "https://github.com/chrs1885/Capable.git", from: "1.1.3"),
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git", from: "1.5.0"),
.package(url: "https://github.com/Quick/Quick.git", from: "2.1.0"),
.package(url: "https://github.com/Quick/Nimble.git", from: "8.0.4"),
.package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.40.13"),
.package(url: "https://github.com/Realm/SwiftLint", from: "0.35.0"),
.package(url: "https://github.com/orta/Komondor", from: "1.0.4"),
.package(url: "https://github.com/eneko/SourceDocs.git", from: "0.5.1"),
],
targets: [
.target(name: "SheetyColors_Example", dependencies: [], path: "Example", sources: ["SheetyColors/SheetType.swift"]),
Expand Down

0 comments on commit 8d4657d

Please sign in to comment.