Skip to content

Commit

Permalink
Rename library
Browse files Browse the repository at this point in the history
  • Loading branch information
Guilherme Souza committed May 10, 2022
1 parent 0ba60ec commit 2b9e87d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ let package = Package(
platforms: [.iOS(.v11), .macOS(.v10_13)],
products: [
.library(
name: "SupabaseLogger",
targets: ["SupabaseLogger"])
name: "SupabaseLogging",
targets: ["SupabaseLogging"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-log", from: "1.4.2")
],
targets: [
.target(
name: "SupabaseLogger",
name: "SupabaseLogging",
dependencies: [
.product(name: "Logging", package: "swift-log")
]),
.testTarget(
name: "SupabaseLoggerTests",
dependencies: ["SupabaseLogger"],
name: "SupabaseLoggingTests",
dependencies: ["SupabaseLogging"],
exclude: ["_Secrets.swift"]),
]
)
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Logging
import XCTest

@testable import SupabaseLogger
@testable import SupabaseLogging

final class SupabaseLogHandlerTests: XCTestCase {
func testLive() throws {
Expand Down
File renamed without changes.

0 comments on commit 2b9e87d

Please sign in to comment.