Skip to content

Commit c1f30c4

Browse files
committed
export HTMLTypes
1 parent d593953 commit c1f30c4

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Package.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ extension Target.Dependency {
2323
static var cssTypes: Self { .product(name: "CSSTypes", package: "swift-css-types") }
2424
static var htmlAttributeTypes: Self { .product(name: "HTMLAttributeTypes", package: "swift-html-types") }
2525
static var htmlElementTypes: Self { .product(name: "HTMLElementTypes", package: "swift-html-types") }
26+
static var htmlTypes: Self { .product(name: "HTMLTypes", package: "swift-html-types") }
2627
static var pointFreeHTML: Self { .product(name: "PointFreeHTML", package: "pointfree-html") }
2728
static var pointFreeHtmlTestSupport: Self { .product(name: "PointFreeHTMLTestSupport", package: "pointfree-html") }
2829
}
@@ -54,6 +55,7 @@ let package = Package(
5455
.htmlCSS,
5556
.pointFreeHTML,
5657
.cssTypes,
58+
.htmlTypes,
5759
.htmlElementsPointFreeHTML,
5860
.htmlAttributesPointFreeHTML,
5961
]

Package@swift-6.0.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ extension Target.Dependency {
2323
static var cssTypes: Self { .product(name: "CSSTypes", package: "swift-css-types") }
2424
static var htmlAttributeTypes: Self { .product(name: "HTMLAttributeTypes", package: "swift-html-types") }
2525
static var htmlElementTypes: Self { .product(name: "HTMLElementTypes", package: "swift-html-types") }
26+
static var htmlTypes: Self { .product(name: "HTMLTypes", package: "swift-html-types") }
2627
static var pointFreeHTML: Self { .product(name: "PointFreeHTML", package: "pointfree-html") }
2728
static var pointFreeHtmlTestSupport: Self { .product(name: "PointFreeHTMLTestSupport", package: "pointfree-html") }
2829
}
@@ -54,6 +55,7 @@ let package = Package(
5455
.htmlCSS,
5556
.pointFreeHTML,
5657
.cssTypes,
58+
.htmlTypes,
5759
.htmlElementsPointFreeHTML,
5860
.htmlAttributesPointFreeHTML,
5961
]

Sources/HTML+CSS+PointFreeHTML/HTML+CSS+PointFree.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
// Created by Coen ten Thije Boonkkamp on 10/04/2025.
66
//
77

8-
@_exported import CSS_PointFreeHTML
98
@_exported import PointFreeHTML
10-
// @_exported import HTMLAttributes_PointFreeHTML
119
@_exported import CSSTypes
10+
@_exported import HTMLTypes
11+
@_exported import CSS_PointFreeHTML
1212
@_exported import HTMLElements_PointFreeHTML

0 commit comments

Comments
 (0)