Skip to content

Commit

Permalink
Update Package
Browse files Browse the repository at this point in the history
  • Loading branch information
jihoonahn committed Oct 26, 2023
1 parent 052a2dd commit f38535f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,25 @@ let package = Package(
name: "TuistUI",
platforms: [.macOS(.v11)],
products: [
.library(
.executable(
name: "tuist-ui",
targets: ["tuist-ui-cli"]
),
.library(
name: "TuistUI",
targets: ["TuistUI"]
)
],
dependencies: [
.package(url: "https://github.com/tuist/projectdescription", from: "3.28.0"),
],
targets: [
.executableTarget(
name: "tuist-ui-cli",
dependencies: [
"TuistUI"
]
),
.target(
name: "TuistUI",
dependencies: [
Expand All @@ -23,7 +33,10 @@ let package = Package(
),
.testTarget(
name: "TuistUITests",
dependencies: ["TuistUI"]
dependencies: [
"TuistUI"
],
path: "Tests"
),
]
)
File renamed without changes.

0 comments on commit f38535f

Please sign in to comment.