Skip to content

Commit 59e4741

Browse files
feat: initial email provider
1 parent 37a1bd3 commit 59e4741

File tree

4 files changed

+32
-0
lines changed

4 files changed

+32
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.DS_Store
2+
/.build
3+
/Packages
4+
xcuserdata/
5+
DerivedData/
6+
.swiftpm/configuration/registries.json
7+
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
8+
.netrc
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// The Swift Programming Language
2+
// https://docs.swift.org/swift-book
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import Testing
2+
@testable import FirebaseEmailAuthSwiftUI
3+
4+
@Test func example() async throws {
5+
// Write your test here and use APIs like `#expect(...)` to check expected conditions.
6+
}

Package.swift

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ let package = Package(
6666
name: "FirebaseAuthSwiftUI",
6767
targets: ["FirebaseAuthSwiftUI"]
6868
),
69+
.library(
70+
name: "FirebaseEmailAuthSwiftUI",
71+
targets: ["FirebaseEmailAuthSwiftUI"]
72+
),
6973
],
7074
dependencies: [
7175
.package(
@@ -257,5 +261,17 @@ let package = Package(
257261
dependencies: ["FirebaseAuthSwiftUI"],
258262
path: "FirebaseSwiftUI/FirebaseAuthSwiftUI/Tests/"
259263
),
264+
.target(
265+
name: "FirebaseEmailAuthSwiftUI",
266+
dependencies: [
267+
"FirebaseAuthSwiftUI"
268+
],
269+
path: "FirebaseSwiftUI/FirebaseEmailAuthSwiftUI/Sources"
270+
),
271+
.testTarget(
272+
name: "FirebaseEmailAuthSwiftUITests",
273+
dependencies: ["FirebaseEmailAuthSwiftUI"],
274+
path: "FirebaseSwiftUI/FirebaseEmailAuthSwiftUI/Tests/"
275+
),
260276
]
261277
)

0 commit comments

Comments
 (0)