Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
marcprux committed Sep 7, 2023
1 parent a8b0e2e commit 0e1f5df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ let package = Package(
.library(name: "SkipLib", targets: ["SkipLib"]),
],
dependencies: [
.package(url: "https://source.skip.tools/skip.git", from: "0.6.56"),
.package(url: "https://source.skip.tools/skip-unit.git", from: "0.2.17"),
.package(url: "https://source.skip.tools/skip.git", from: "0.6.57"),
.package(url: "https://source.skip.tools/skip-unit.git", from: "0.2.18"),
],
targets: [
.target(name: "SkipLib", dependencies: [.product(name: "SkipUnit", package: "skip-unit", condition: .when(platforms: [.macOS]))], plugins: [.plugin(name: "skipstone", package: "skip")]),
.testTarget(name: "SkipLibTests", dependencies: ["SkipLib", .product(name: "SkipTest", package: "skip")], plugins: [.plugin(name: "skipstone", package: "skip")]),
.testTarget(name: "SkipLibTests", dependencies: ["SkipLib", .product(name: "SkipTest", package: "skip", condition: .when(platforms: [.macOS]))], plugins: [.plugin(name: "skipstone", package: "skip")]),
]
)

0 comments on commit 0e1f5df

Please sign in to comment.