Skip to content

Commit

Permalink
Add DesignResourcesKit to SyncUI (#2147)
Browse files Browse the repository at this point in the history
Task/Issue URL: https://app.asana.com/0/414235014887631/1205930555428985/f
Tech Design URL:
CC: @ayoy

Description:

This PR adds DesignResourcesKit as a dependency of SyncUI. SyncUI already imports it in a number of places, but doesn't have it declared as a dependency.
  • Loading branch information
samsymons authored Nov 10, 2023
1 parent 02329f8 commit 7f47f02
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions LocalPackages/SyncUI/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,15 @@ let package = Package(
targets: ["SyncUI"])
],
dependencies: [
.package(path: "../DuckUI")
.package(path: "../DuckUI"),
.package(url: "https://github.com/duckduckgo/DesignResourcesKit", exact: "2.0.0")
],
targets: [
.target(
name: "SyncUI",
dependencies: [
.product(name: "DuckUI", package: "DuckUI")
.product(name: "DuckUI", package: "DuckUI"),
"DesignResourcesKit"
])
]
)

0 comments on commit 7f47f02

Please sign in to comment.