mirror of
https://github.com/nicklockwood/SwiftFormat.git
synced 2026-05-17 10:30:35 +00:00
14 lines
355 B
Swift
Executable File
14 lines
355 B
Swift
Executable File
// swift-tools-version:4.0
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Expression",
|
|
products: [
|
|
.library(name: "Expression", targets: ["Expression"]),
|
|
],
|
|
targets: [
|
|
.target(name: "Expression", path: "Sources"),
|
|
.testTarget(name: "ExpressionTests", dependencies: ["Expression"], path: "Tests"),
|
|
]
|
|
)
|