Skip to content

Commit c287fb7

Browse files
committed
Update CommonLog package path and version references
Moved all references to CommonLog from the old path to 'spm/universal/common/domain/system/common-log' across Xcode project files, YAML configs, and SwiftPM manifests. Updated remote dependency versions to 4.0.0 where applicable and standardized the package name to 'common-log'. Improved deep link error handling and file resolution in CodeSwiftlyRootView and DeepLinking.swift. Removed CFBundleURLTypes from Info.plist files and deleted an obsolete Package.resolved file.
1 parent 9385800 commit c287fb7

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

Package.swift

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ import PackageDescription
66

77
Package.Inject.local.dependencies = [
88
.package(name: "WrkstrmFoundation", path: "../../../WrkstrmFoundation"),
9-
.package(name: "common/domain/system/common-log", path: "../../../common/domain/system/common-log"),
9+
.package(name: "common-log", path: "../../../common/domain/system/common-log"),
1010
.package(name: "WrkstrmMain", path: "../../../WrkstrmMain"),
1111
]
1212

1313
Package.Inject.remote.dependencies = [
14-
.package(url: "https://github.com/wrkstrm/WrkstrmFoundation.git", from: "3.0.0"),
15-
.package(url: "https://github.com/wrkstrm/common-log.git", from: "2.0.0"),
14+
.package(url: "https://github.com/wrkstrm/WrkstrmFoundation.git", from: "4.0.0"),
15+
.package(url: "https://github.com/wrkstrm/common-log.git", from: "4.0.0"),
1616
.package(url: "https://github.com/wrkstrm/WrkstrmMain.git", from: "2.4.0"),
1717
]
1818

@@ -37,7 +37,11 @@ let package = Package(
3737
targets: [
3838
.target(
3939
name: "WrkstrmNetworking",
40-
dependencies: ["WrkstrmFoundation", "CommonLog", "WrkstrmMain"],
40+
dependencies: [
41+
.product(name: "WrkstrmFoundation", package: "WrkstrmFoundation"),
42+
.product(name: "CommonLog", package: "common-log"),
43+
.product(name: "WrkstrmMain", package: "WrkstrmMain")
44+
],
4145
path: "sources/wrkstrm-networking",
4246
swiftSettings: Package.Inject.shared.swiftSettings,
4347
),

0 commit comments

Comments
 (0)