Skip to content

Commit

Permalink
Remove the validator app. (#20)
Browse files Browse the repository at this point in the history
Task/Issue URL: https://app.asana.com/0/1200194497630846/1206998874029387/f
Tech Design URL:
CC:

Description:

This PR removes the validator app, which has never really been used by anyone and is adding complexity to the dependency tree.
  • Loading branch information
samsymons authored Apr 17, 2024
1 parent a6b7ba1 commit 6c84fd1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 185 deletions.
16 changes: 0 additions & 16 deletions Package.resolved

This file was deleted.

12 changes: 1 addition & 11 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,15 @@ import PackageDescription
let package = Package(
name: "TrackerRadarKit",
products: [
.executable(name: "validator", targets: ["Validator"]),
.library(
name: "TrackerRadarKit",
targets: ["TrackerRadarKit"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.2.1")
],
dependencies: [],
targets: [
.target(
name: "TrackerRadarKit",
dependencies: []),
.target(
name: "Validator",
dependencies:
[
"TrackerRadarKit",
.product(name: "ArgumentParser", package: "swift-argument-parser")
]),
.testTarget(
name: "TrackerRadarKitTests",
dependencies: ["TrackerRadarKit"],
Expand Down
158 changes: 0 additions & 158 deletions Sources/Validator/main.swift

This file was deleted.

0 comments on commit 6c84fd1

Please sign in to comment.