Skip to content

Commit

Permalink
Correct
Browse files Browse the repository at this point in the history
  • Loading branch information
3lvis committed Jun 14, 2024
1 parent d539505 commit 94a715a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ let package = Package(
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.target(
name: "FormTextField"),
name: "FormTextField",
path: "FormTextField/Sources"),
.testTarget(
name: "FormTextFieldTests",
dependencies: ["FormTextField"]),
dependencies: ["FormTextField"],
path: "FormTextField/Tests"), // Specify the path to your test files if they are in a separate folder
]
)

0 comments on commit 94a715a

Please sign in to comment.