mirror of
https://github.com/samsonjs/Peekaboo.git
synced 2026-04-09 11:55:48 +00:00
- Fixed all Swift test compilation errors and SwiftLint violations - Enhanced test host app with permission status display and CLI availability checking - Refactored ImageCommand.swift to improve readability and reduce function length - Updated all tests to use proper Swift Testing patterns - Added comprehensive local testing framework for screenshot functionality - Updated documentation with proper test execution instructions - Applied SwiftFormat to all Swift files and achieved zero serious linting issues 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
556 B
Swift
25 lines
556 B
Swift
// swift-tools-version: 6.0
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "PeekabooTestHost",
|
|
platforms: [
|
|
.macOS(.v13)
|
|
],
|
|
products: [
|
|
.executable(
|
|
name: "PeekabooTestHost",
|
|
targets: ["PeekabooTestHost"]
|
|
)
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "PeekabooTestHost",
|
|
path: ".",
|
|
sources: ["TestHostApp.swift", "ContentView.swift"],
|
|
swiftSettings: [
|
|
.swiftLanguageMode(.v6)
|
|
]
|
|
)
|
|
]
|
|
)
|