Skip to content

Commit 14f8228

Browse files
Fix RELEASE.md included in package build
Fixes the following warning when using this package as a dependency in another swift project, specifically when running `swift build` warning: 'swift-prometheus': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
1 parent 8a8ff47 commit 14f8228

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Package.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ let package = Package(
3434
dependencies: [
3535
.product(name: "Atomics", package: "swift-atomics"),
3636
.product(name: "CoreMetrics", package: "swift-metrics"),
37+
],
38+
exclude: [
39+
"RELEASE.md",
3740
]
3841
),
3942
.testTarget(

0 commit comments

Comments
 (0)