Skip to content

Commit

Permalink
Merge pull request #31 from p-x9/feature/use-keypath-value-lib
Browse files Browse the repository at this point in the history
fix to use `KeyPathValue` package
  • Loading branch information
p-x9 committed Nov 14, 2022
2 parents c639958 + f41ca1e commit 4e28ff7
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 48 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@
"version" : "0.0.2"
}
},
{
"identity" : "keypathvalue",
"kind" : "remoteSourceControl",
"location" : "https://github.com/p-x9/KeyPathValue.git",
"state" : {
"revision" : "6aeb41d6c5564ae1f18e8b7a4bc5733d739558e3",
"version" : "0.0.1"
}
},
{
"identity" : "swift-collections",
"kind" : "remoteSourceControl",
Expand Down
32 changes: 32 additions & 0 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"pins" : [
{
"identity" : "editvalueview",
"kind" : "remoteSourceControl",
"location" : "https://github.com/p-x9/EditValueView.git",
"state" : {
"revision" : "16e74e228f320c0a2c55571313f06989e97c1ab4",
"version" : "0.0.2"
}
},
{
"identity" : "keypathvalue",
"kind" : "remoteSourceControl",
"location" : "https://github.com/p-x9/KeyPathValue.git",
"state" : {
"revision" : "6aeb41d6c5564ae1f18e8b7a4bc5733d739558e3",
"version" : "0.0.1"
}
},
{
"identity" : "swiftuicolor",
"kind" : "remoteSourceControl",
"location" : "https://github.com/p-x9/SwiftUIColor.git",
"state" : {
"revision" : "3696e78e84bc140dca6f865c297e1a3b405a882b",
"version" : "0.0.4"
}
}
],
"version" : 2
}
7 changes: 5 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,15 @@ let package = Package(
)
],
dependencies: [
.package(url: "https://github.com/p-x9/EditValueView.git", exact: "0.0.2")
.package(url: "https://github.com/p-x9/EditValueView.git", exact: "0.0.2"),
.package(url: "https://github.com/p-x9/KeyPathValue.git", exact: "0.0.1")
],
targets: [
.target(
name: "AppContainer",
dependencies: []
dependencies: [
.product(name: "KeyPathValue", package: "KeyPathValue")
]
),
.target(
name: "AppContainerUI",
Expand Down
1 change: 1 addition & 0 deletions Sources/AppContainer/AppContainer.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Foundation
import KeyPathValue

public class AppContainer {
public static let standard = AppContainer()
Expand Down
46 changes: 0 additions & 46 deletions Sources/AppContainer/Model/WritableKeyPathWithValue.swift

This file was deleted.

0 comments on commit 4e28ff7

Please sign in to comment.