Skip to content

Commit

Permalink
add xcbeautify
Browse files Browse the repository at this point in the history
  • Loading branch information
taji-taji committed Sep 3, 2022
1 parent d1b639e commit e16729c
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.DS_Store
/.build
/**/.build
/Packages
/*.xcodeproj
xcuserdata/
Expand Down
Empty file added DevTools/Dummy.swift
Empty file.
41 changes: 41 additions & 0 deletions DevTools/Package.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"pins" : [
{
"identity" : "colorizer",
"kind" : "remoteSourceControl",
"location" : "https://github.com/getGuaka/Colorizer.git",
"state" : {
"revision" : "2ccc99bf1715e73c4139e8d40b6e6b30be975586",
"version" : "0.2.1"
}
},
{
"identity" : "swift-argument-parser",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-argument-parser.git",
"state" : {
"revision" : "9f39744e025c7d377987f30b03770805dcb0bcd1",
"version" : "1.1.4"
}
},
{
"identity" : "xcbeautify",
"kind" : "remoteSourceControl",
"location" : "https://github.com/tuist/xcbeautify",
"state" : {
"revision" : "a3f5db18e7218a3817031b1b8227b1cb5704cb93",
"version" : "0.13.0"
}
},
{
"identity" : "xmlcoder",
"kind" : "remoteSourceControl",
"location" : "https://github.com/MaxDesiatov/XMLCoder.git",
"state" : {
"revision" : "ca932442d7481700f5434a7b138c47dd42d9902b",
"version" : "0.14.0"
}
}
],
"version" : 2
}
13 changes: 13 additions & 0 deletions DevTools/Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// swift-tools-version: 5.6
import PackageDescription

let package = Package(
name: "DevTools",
platforms: [.macOS(.v10_11)],
dependencies: [
.package(url: "https://github.com/tuist/xcbeautify", from: "0.13.0"),
],
targets: [
.target(name: "DevTools", path: "")
]
)

0 comments on commit e16729c

Please sign in to comment.