-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cd62579
commit ead6a51
Showing
11 changed files
with
57 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import ProjectDescription | ||
import MyPlugin | ||
|
||
// Local plugin loaded | ||
let localHelper = LocalHelper(name: "MyPlugin") | ||
|
||
// Creates our project using a helper function defined in ProjectDescriptionHelpers | ||
let project = Project.makeAppModule( | ||
bundleId: Project.Environment.appName, | ||
product: .app, | ||
settings: .settings() | ||
) |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import ProjectDescription | ||
import MyPlugin | ||
|
||
// Local plugin loaded | ||
|
||
// Creates our project using a helper function defined in ProjectDescriptionHelpers | ||
let project = Project.makeAppModule( | ||
bundleId: "Authorization", | ||
product: .staticFramework, | ||
settings: .settings() | ||
) |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import ProjectDescription | ||
import MyPlugin | ||
|
||
// Local plugin loaded | ||
let localHelper = LocalHelper(name: "MyPlugin") | ||
|
||
// Creates our project using a helper function defined in ProjectDescriptionHelpers | ||
let project = Project.makeAppModule( | ||
bundleId: "Networking", | ||
product: .staticFramework, | ||
settings: .settings(), | ||
dependencies: [] | ||
) |
Empty file.
76 changes: 0 additions & 76 deletions
76
BeatCounter/Tuist/ProjectDescriptionHelpers/Project+Templates.swift
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// | ||
// WorkSpace.swift | ||
// ProjectDescriptionHelpers | ||
// | ||
// Created by 염성훈 on 12/10/23. | ||
// | ||
|
||
import Foundation | ||
import ProjectDescription | ||
import MyPlugin | ||
|
||
|
||
let workSpace = Workspace( | ||
name: Project.Environment.appName, | ||
projects: ["Projects/**"] | ||
) |