Renamed the Coordinator target in the Package file as Coordination.

This commit is contained in:
Javier Cicchelli 2023-04-16 16:46:33 +02:00
parent 12add7bf30
commit ff6049fe58
9 changed files with 16 additions and 16 deletions

View File

@ -14,7 +14,7 @@ let package = Package(
.library(
name: "SwiftLibs",
targets: [
"Coordinator",
"Coordination",
"Core"
]
),
@ -22,7 +22,7 @@ let package = Package(
dependencies: [],
targets: [
.target(
name: "Coordinator",
name: "Coordination",
dependencies: [],
exclude: excludePlatforms
),
@ -31,11 +31,11 @@ let package = Package(
dependencies: []
),
.testTarget(
name: "CoordinatorTests",
name: "CoordinationTests",
dependencies: [
"Coordinator"
"Coordination"
],
path: "Tests/Coordinator",
path: "Tests/Coordination",
exclude: excludePlatforms
),
.testTarget(

View File

@ -1,6 +1,6 @@
//
// BaseNavigationRouter.swift
// Coordinator
// Coordination
//
// Created by Javier Cicchelli on 11/04/2023.
// Copyright © 2023 Röck+Cöde. All rights reserved.

View File

@ -1,6 +1,6 @@
//
// ModalNavigationRouter.swift
// Coordinator
// Coordination
//
// Created by Javier Cicchelli on 11/04/2023.
// Copyright © 2023 Röck+Cöde. All rights reserved.

View File

@ -1,6 +1,6 @@
//
// PushNavigationRouter.swift
// Coordinator
// Coordination
//
// Created by Javier Cicchelli on 11/04/2023.
// Copyright © 2023 Röck+Cöde. All rights reserved.

View File

@ -1,6 +1,6 @@
//
// WindowRouter.swift
// Coordinator
// Coordination
//
// Created by Javier Cicchelli on 11/04/2023.
// Copyright © 2023 Röck+Cöde. All rights reserved.

View File

@ -1,6 +1,6 @@
//
// Coordinator.swift
// Coordinator
// Coordination
//
// Created by Javier Cicchelli on 11/04/2023.
// Copyright © 2023 Röck+Cöde. All rights reserved.

View File

@ -1,6 +1,6 @@
//
// Router.swift
// Coordinator
// Coordination
//
// Created by Javier Cicchelli on 11/04/2023.
// 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.
public protocol Router: AnyObject {
// MARK: Typealiases
// MARK: Type aliases
typealias OnDismissedClosure = () -> Void

View File

@ -1,12 +1,12 @@
//
// TestCoordinators.swift
// CoordinatorTests
// CoordinationTests
//
// Created by Javier Cicchelli on 11/04/2023.
// Copyright © 2023 Röck+Cöde. All rights reserved.
//
import Coordinator
import Coordination
import UIKit
// MARK: - Test coordinators

View File

@ -1,12 +1,12 @@
//
// CoordinatorTests.swift
// CoordinatorTests
// CoordinationTests
//
// Created by Javier Cicchelli on 11/04/2023.
// Copyright © 2023 Röck+Cöde. All rights reserved.
//
import Coordinator
import Coordination
import UIKit
import XCTest