Skip to content

Commit

Permalink
Removed debugTools for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
SwiftedMind committed Jan 15, 2023
1 parent 882aba5 commit 89757c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
9 changes: 1 addition & 8 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ let package = Package(
.library(
name: "Puddles",
targets: ["Puddles"]
),
.library(name: "PreviewDebugTools", targets: ["PreviewDebugTools"])
)
],
dependencies: [
.package(url: "https://github.com/apple/swift-docc-plugin", branch: "main"),
Expand All @@ -24,12 +23,6 @@ let package = Package(
dependencies: [
.product(name: "AsyncAlgorithms", package: "swift-async-algorithms"),
]
),
.target(
name: "PreviewDebugTools",
dependencies: [
"Puddles"
]
)
]
)
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ You will also need Swift 5.7 to compile the package.
The package is installed through the Swift Package Manager. Simply add the following line to your `Package.swift` dependencies:

```swift
.package(url: "https://github.com/SwiftedMind/Puddles", from: "0.1.0")
.package(url: "https://github.com/SwiftedMind/Puddles", branch: "main")
```

Alternatively, if you want to add the package to an Xcode project, go to `File` > `Add Packages...` and enter the URL "https://github.com/SwiftedMind/Puddles" into the search field at the top. Puddles should appear in the list. Select it and click "Add Package" in the bottom right.
Expand Down

0 comments on commit 89757c1

Please sign in to comment.