Skip to content

Commit

Permalink
feat: process privacy manifest in old package.swift for old swift ver…
Browse files Browse the repository at this point in the history
…sions
  • Loading branch information
Rubenfer committed May 1, 2024
1 parent 1fa60e4 commit b935d47
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Package@swift-5.5.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ let package = Package(name: "Diagnostics",
path: "Sources",
resources: [
.process("style.css"),
.process("functions.js")
.process("functions.js"),
.process("PrivacyInfo.xcprivacy")
]),
.testTarget(name: "DiagnosticsTests", dependencies: ["Diagnostics"], path: "DiagnosticsTests")
],
Expand Down
3 changes: 2 additions & 1 deletion Package@swift-5.6.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ let package = Package(name: "Diagnostics",
path: "Sources",
resources: [
.process("style.css"),
.process("functions.js")
.process("functions.js"),
.process("PrivacyInfo.xcprivacy")
]),
.testTarget(name: "DiagnosticsTests", dependencies: ["Diagnostics"], path: "DiagnosticsTests")
],
Expand Down
3 changes: 2 additions & 1 deletion Package@swift-5.7.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ let package = Package(name: "Diagnostics",
path: "Sources",
resources: [
.process("style.css"),
.process("functions.js")
.process("functions.js"),
.process("PrivacyInfo.xcprivacy")
]),
.testTarget(name: "DiagnosticsTests", dependencies: ["Diagnostics"], path: "DiagnosticsTests")
],
Expand Down
3 changes: 2 additions & 1 deletion Package@swift-5.8.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ let package = Package(name: "Diagnostics",
path: "Sources",
resources: [
.process("style.css"),
.process("functions.js")
.process("functions.js"),
.process("PrivacyInfo.xcprivacy")
]),
.testTarget(name: "DiagnosticsTests", dependencies: ["Diagnostics"], path: "DiagnosticsTests")
],
Expand Down

0 comments on commit b935d47

Please sign in to comment.