Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stop vendoring CasePaths #87

Merged
merged 6 commits into from
May 13, 2020
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
/Packages
/*.xcodeproj
xcuserdata/
Package.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"object": {
"pins": [
{
"package": "CasePaths",
"repositoryURL": "https://www.github.com/pointfreeco/swift-case-paths",
"state": {
"branch": null,
"revision": "a9c1e05518b6d95cf5844d823020376f2b6ff842",
"version": "0.1.0"
}
}
]
},
"version": 1
}
7 changes: 6 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,15 @@ let package = Package(
targets: ["ComposableArchitecture"]
),
],
dependencies: [
.package(url: "https://www.github.com/pointfreeco/swift-case-paths", from: "0.1.0")
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this version good for pinning?

mbrandonw marked this conversation as resolved.
Show resolved Hide resolved
],
targets: [
.target(
name: "ComposableArchitecture",
dependencies: []
dependencies: [
"CasePaths"
]
),
.testTarget(
name: "ComposableArchitectureTests",
Expand Down
50 changes: 0 additions & 50 deletions Sources/ComposableArchitecture/CasePaths/CasePath.swift

This file was deleted.

55 changes: 0 additions & 55 deletions Sources/ComposableArchitecture/CasePaths/CasePaths.swift

This file was deleted.

94 changes: 0 additions & 94 deletions Sources/ComposableArchitecture/CasePaths/EnumReflection.swift

This file was deleted.

118 changes: 0 additions & 118 deletions Sources/ComposableArchitecture/CasePaths/Operators.swift

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import CasePaths
import Dispatch

extension Reducer {
Expand Down
1 change: 1 addition & 0 deletions Sources/ComposableArchitecture/Internal/Exports.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@_exported import CasePaths
1 change: 1 addition & 0 deletions Sources/ComposableArchitecture/Reducer.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import CasePaths
import Combine

/// A reducer describes how to evolve the current state of an application to the next state, given
Expand Down
Loading