We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d539505 commit 94a715aCopy full SHA for 94a715a
Package.swift
@@ -18,9 +18,11 @@ let package = Package(
18
// Targets are the basic building blocks of a package, defining a module or a test suite.
19
// Targets can depend on other targets in this package and products from dependencies.
20
.target(
21
- name: "FormTextField"),
+ name: "FormTextField",
22
+ path: "FormTextField/Sources"),
23
.testTarget(
24
name: "FormTextFieldTests",
- dependencies: ["FormTextField"]),
25
+ dependencies: ["FormTextField"],
26
+ path: "FormTextField/Tests"), // Specify the path to your test files if they are in a separate folder
27
]
28
)
0 commit comments