Skip to content

Commit

Permalink
Added PhantomKitUI target
Browse files Browse the repository at this point in the history
  • Loading branch information
pawello2222 committed May 15, 2024
1 parent 7ad7408 commit 4e5ff76
Show file tree
Hide file tree
Showing 40 changed files with 13 additions and 2 deletions.
10 changes: 9 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ let package = Package(
.library(
name: "PhantomKitNetworking",
targets: ["PhantomKitNetworking"]
)
),
.library(
name: "PhantomKitUI",
targets: ["PhantomKitUI"]
),

Check warning on line 29 in Package.swift

View workflow job for this annotation

GitHub Actions / lint

Trailing Comma Violation: Collection literals should not have trailing commas (trailing_comma)
],
dependencies: [
.package(url: "https://github.com/pawello2222/Appliable", from: "1.0.0")
Expand All @@ -40,6 +44,10 @@ let package = Package(
name: "PhantomKitNetworking",
dependencies: ["PhantomKit", "PhantomKitLogger"]
),
.target(
name: "PhantomKitUI",
dependencies: ["PhantomKit"]
),
.testTarget(
name: "PhantomKitTests",
dependencies: ["PhantomKit"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

#if canImport(PDFKit)

import Appliable
import PDFKit
import SwiftUI

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 3 additions & 1 deletion codecov.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
coverage:
ignore:
- "Sources/PhantomKit/SwiftUI"
- "Sources/PhantomKitLogger"
- "Sources/PhantomKitNetworking"
- "Sources/PhantomKitUI"
- "Tests"
status:
project:
Expand Down

0 comments on commit 4e5ff76

Please sign in to comment.