Skip to content

Commit

Permalink
🔧 Remove underscores from target names
Browse files Browse the repository at this point in the history
  • Loading branch information
olejnjak committed Feb 22, 2024
1 parent 7f58674 commit 3be32dd
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion App/Sources/AppDependency.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ACKategories
import Core
import AppCore
import Foundation
import UserManager

Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Modules/Login/Sources/LoginViewModel.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Core
import AppCore
import Foundation

public protocol LoginViewModeling {
Expand Down
2 changes: 1 addition & 1 deletion Modules/Profile/Sources/ProfileViewModel.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Core
import AppCore
import Foundation

public protocol ProfileViewModeling {
Expand Down
2 changes: 1 addition & 1 deletion Modules/UserManager/Sources/UserManager.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Core
import AppCore
import Foundation

public func createUserManager() -> UserManaging {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Foundation
import ProjectDescription

private let targetName = "Core"
private let targetName = "AppCore"
private let basePath = "Modules/" + targetName

let core = Target(
Expand All @@ -20,7 +20,7 @@ let core = Target(
)

let coreTests = Target(
name: core.name + "_Tests",
name: core.name + "Tests",
destinations: .tests,
product: .unitTests,
bundleId: core.bundleId + ".tests",
Expand Down
2 changes: 1 addition & 1 deletion Tuist/ProjectDescriptionHelpers/Targets/AppUI.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let appUI = Target(
)

let appUITests = Target(
name: appUI.name + "_Tests",
name: appUI.name + "Tests",
destinations: .tests,
product: .unitTests,
bundleId: appUI.bundleId + ".tests",
Expand Down
2 changes: 1 addition & 1 deletion Tuist/ProjectDescriptionHelpers/Targets/Login.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ let login = Target(
)

let loginTests = Target(
name: login.name + "_Tests",
name: login.name + "Tests",
destinations: .tests,
product: .unitTests,
bundleId: login.bundleId + ".tests",
Expand Down
2 changes: 1 addition & 1 deletion Tuist/ProjectDescriptionHelpers/Targets/Profile.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ let profile = Target(
)

let profileTests = Target(
name: profile.name + "_Tests",
name: profile.name + "Tests",
destinations: .tests,
product: .unitTests,
bundleId: profile.bundleId + ".tests",
Expand Down
2 changes: 1 addition & 1 deletion Tuist/ProjectDescriptionHelpers/Targets/UserManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let userManager = Target(
)

let userManagerTests = Target(
name: userManager.name + "_Tests",
name: userManager.name + "Tests",
destinations: .tests,
product: .unitTests,
bundleId: userManager.bundleId + ".tests",
Expand Down

0 comments on commit 3be32dd

Please sign in to comment.