Skip to content

Commit 121fd28

Browse files
authored
Use Noora for terminal styling (#4)
1 parent b5b23be commit 121fd28

File tree

3 files changed

+162
-94
lines changed

3 files changed

+162
-94
lines changed

Package.resolved

+20-11
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,31 @@
99
"revision" : "0cd74e93e216ad0103d199dc333e762643d1ebdf"
1010
}
1111
},
12+
{
13+
"identity" : "noora",
14+
"kind" : "remoteSourceControl",
15+
"location" : "https://github.com/tuist/Noora.git",
16+
"state" : {
17+
"revision" : "22d5615e248abb00c7f501a24b56952b973dbc26",
18+
"version" : "0.28.1"
19+
}
20+
},
21+
{
22+
"identity" : "rainbow",
23+
"kind" : "remoteSourceControl",
24+
"location" : "https://github.com/onevcat/Rainbow",
25+
"state" : {
26+
"revision" : "0c627a4f8a39ef37eadec1ceec02e4a7f55561ac",
27+
"version" : "4.1.0"
28+
}
29+
},
1230
{
1331
"identity" : "swift-argument-parser",
1432
"kind" : "remoteSourceControl",
1533
"location" : "https://github.com/apple/swift-argument-parser.git",
1634
"state" : {
17-
"revision" : "c8ed701b513cf5177118a175d85fbbbcd707ab41",
18-
"version" : "1.3.0"
35+
"revision" : "41982a3656a71c768319979febd796c6fd111d5c",
36+
"version" : "1.5.0"
1937
}
2038
},
2139
{
@@ -27,15 +45,6 @@
2745
"version" : "2.6.0"
2846
}
2947
},
30-
{
31-
"identity" : "swifttui",
32-
"kind" : "remoteSourceControl",
33-
"location" : "https://github.com/Finnvoor/SwiftTUI.git",
34-
"state" : {
35-
"revision" : "fe7a5592492e8d6145d1f06005fe4cdc0edaf135",
36-
"version" : "1.0.3"
37-
}
38-
},
3948
{
4049
"identity" : "urlqueryencoder",
4150
"kind" : "remoteSourceControl",

Package.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ import PackageDescription
44

55
let package = Package(
66
name: "xcc",
7-
platforms: [.macOS(.v11)],
7+
platforms: [.macOS(.v12)],
88
products: [.executable(name: "xcc", targets: ["xcc"])],
99
dependencies: [
1010
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.0"),
1111
.package(url: "https://github.com/finnvoor/appstoreconnect-swift-sdk.git", branch: "master"),
12-
.package(url: "https://github.com/Finnvoor/SwiftTUI.git", from: "1.0.3")
12+
.package(url: "https://github.com/tuist/Noora.git", from: "0.28.1"),
1313
],
1414
targets: [
1515
.executableTarget(
1616
name: "xcc",
1717
dependencies: [
1818
.product(name: "ArgumentParser", package: "swift-argument-parser"),
1919
.product(name: "AppStoreConnect-Swift-SDK", package: "AppStoreConnect-Swift-SDK"),
20-
.product(name: "SwiftTUI", package: "SwiftTUI")
20+
.product(name: "Noora", package: "Noora")
2121
]
2222
),
2323
]

0 commit comments

Comments
 (0)