[Feature] Dependencies #3
@ -14,7 +14,7 @@ let package = Package(
|
|||||||
.library(
|
.library(
|
||||||
name: "SwiftLibs",
|
name: "SwiftLibs",
|
||||||
targets: [
|
targets: [
|
||||||
"Coordinator",
|
"Coordination",
|
||||||
"Core"
|
"Core"
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
@ -22,7 +22,7 @@ let package = Package(
|
|||||||
dependencies: [],
|
dependencies: [],
|
||||||
targets: [
|
targets: [
|
||||||
.target(
|
.target(
|
||||||
name: "Coordinator",
|
name: "Coordination",
|
||||||
dependencies: [],
|
dependencies: [],
|
||||||
exclude: excludePlatforms
|
exclude: excludePlatforms
|
||||||
),
|
),
|
||||||
@ -31,11 +31,11 @@ let package = Package(
|
|||||||
dependencies: []
|
dependencies: []
|
||||||
),
|
),
|
||||||
.testTarget(
|
.testTarget(
|
||||||
name: "CoordinatorTests",
|
name: "CoordinationTests",
|
||||||
dependencies: [
|
dependencies: [
|
||||||
"Coordinator"
|
"Coordination"
|
||||||
],
|
],
|
||||||
path: "Tests/Coordinator",
|
path: "Tests/Coordination",
|
||||||
exclude: excludePlatforms
|
exclude: excludePlatforms
|
||||||
),
|
),
|
||||||
.testTarget(
|
.testTarget(
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
//
|
//
|
||||||
// BaseNavigationRouter.swift
|
// BaseNavigationRouter.swift
|
||||||
// Coordinator
|
// Coordination
|
||||||
//
|
//
|
||||||
// Created by Javier Cicchelli on 11/04/2023.
|
// Created by Javier Cicchelli on 11/04/2023.
|
||||||
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
@ -1,6 +1,6 @@
|
|||||||
//
|
//
|
||||||
// ModalNavigationRouter.swift
|
// ModalNavigationRouter.swift
|
||||||
// Coordinator
|
// Coordination
|
||||||
//
|
//
|
||||||
// Created by Javier Cicchelli on 11/04/2023.
|
// Created by Javier Cicchelli on 11/04/2023.
|
||||||
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
@ -1,6 +1,6 @@
|
|||||||
//
|
//
|
||||||
// PushNavigationRouter.swift
|
// PushNavigationRouter.swift
|
||||||
// Coordinator
|
// Coordination
|
||||||
//
|
//
|
||||||
// Created by Javier Cicchelli on 11/04/2023.
|
// Created by Javier Cicchelli on 11/04/2023.
|
||||||
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
@ -1,6 +1,6 @@
|
|||||||
//
|
//
|
||||||
// WindowRouter.swift
|
// WindowRouter.swift
|
||||||
// Coordinator
|
// Coordination
|
||||||
//
|
//
|
||||||
// Created by Javier Cicchelli on 11/04/2023.
|
// Created by Javier Cicchelli on 11/04/2023.
|
||||||
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
@ -1,6 +1,6 @@
|
|||||||
//
|
//
|
||||||
// Coordinator.swift
|
// Coordinator.swift
|
||||||
// Coordinator
|
// Coordination
|
||||||
//
|
//
|
||||||
// Created by Javier Cicchelli on 11/04/2023.
|
// Created by Javier Cicchelli on 11/04/2023.
|
||||||
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
@ -1,6 +1,6 @@
|
|||||||
//
|
//
|
||||||
// Router.swift
|
// Router.swift
|
||||||
// Coordinator
|
// Coordination
|
||||||
//
|
//
|
||||||
// Created by Javier Cicchelli on 11/04/2023.
|
// Created by Javier Cicchelli on 11/04/2023.
|
||||||
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
||||||
@ -13,7 +13,7 @@ import UIKit
|
|||||||
/// This protocol defines how view controllers will be shown and dismissed.
|
/// This protocol defines how view controllers will be shown and dismissed.
|
||||||
public protocol Router: AnyObject {
|
public protocol Router: AnyObject {
|
||||||
|
|
||||||
// MARK: Typealiases
|
// MARK: Type aliases
|
||||||
|
|
||||||
typealias OnDismissedClosure = () -> Void
|
typealias OnDismissedClosure = () -> Void
|
||||||
|
|
@ -1,12 +1,12 @@
|
|||||||
//
|
//
|
||||||
// TestCoordinators.swift
|
// TestCoordinators.swift
|
||||||
// CoordinatorTests
|
// CoordinationTests
|
||||||
//
|
//
|
||||||
// Created by Javier Cicchelli on 11/04/2023.
|
// Created by Javier Cicchelli on 11/04/2023.
|
||||||
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
||||||
//
|
//
|
||||||
|
|
||||||
import Coordinator
|
import Coordination
|
||||||
import UIKit
|
import UIKit
|
||||||
|
|
||||||
// MARK: - Test coordinators
|
// MARK: - Test coordinators
|
@ -1,12 +1,12 @@
|
|||||||
//
|
//
|
||||||
// CoordinatorTests.swift
|
// CoordinatorTests.swift
|
||||||
// CoordinatorTests
|
// CoordinationTests
|
||||||
//
|
//
|
||||||
// Created by Javier Cicchelli on 11/04/2023.
|
// Created by Javier Cicchelli on 11/04/2023.
|
||||||
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
||||||
//
|
//
|
||||||
|
|
||||||
import Coordinator
|
import Coordination
|
||||||
import UIKit
|
import UIKit
|
||||||
import XCTest
|
import XCTest
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user