Skip to content

Commit 7302c63

Browse files
committed
1 parent 0144436 commit 7302c63

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Package.swift

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// swift-tools-version: 5.9
22
import PackageDescription
3-
import Foundation
43

54
let package = Package(
65
name: "skip-lib",
@@ -9,16 +8,16 @@ let package = Package(
98
.library(name: "SkipLib", targets: ["SkipLib"]),
109
],
1110
dependencies: [
12-
.package(url: "https://source.skip.tools/skip.git", from: "1.2.5"),
13-
.package(url: "https://source.skip.tools/skip-unit.git", from: "1.1.0"),
11+
.package(url: "https://source.skip.tools/skip.git", from: "1.5.14"),
12+
.package(url: "https://source.skip.tools/skip-unit.git", from: "1.1.3"),
1413
],
1514
targets: [
1615
.target(name: "SkipLib", dependencies: [.product(name: "SkipUnit", package: "skip-unit")], plugins: [.plugin(name: "skipstone", package: "skip")]),
1716
.testTarget(name: "SkipLibTests", dependencies: ["SkipLib", .product(name: "SkipTest", package: "skip")], plugins: [.plugin(name: "skipstone", package: "skip")]),
1817
]
1918
)
2019

21-
if ProcessInfo.processInfo.environment["SKIP_BRIDGE"] ?? "0" != "0" {
20+
if Context.environment["SKIP_BRIDGE"] ?? "0" != "0" {
2221
// all library types must be dynamic to support bridging
2322
package.products = package.products.map({ product in
2423
guard let libraryProduct = product as? Product.Library else { return product }

0 commit comments

Comments
 (0)