-
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
Showing
2 changed files
with
27 additions
and
3 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 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 |
---|---|---|
@@ -1,3 +1,27 @@ | ||
# SchemeGeneratorPlugin | ||
|
||
A description of this package. | ||
This plugin allow to generate schemes automatically. | ||
This is very usefull when using TCA or any SPM based project. | ||
|
||
It works only for mac using apple silicon. | ||
|
||
## Usage | ||
|
||
To use it you have to set a configuration file at the root of your project named `scheme_generator.yaml`. | ||
This file contain. | ||
```yaml | ||
# Where the schemes will be saved | ||
schemesDirectory: "" | ||
|
||
# Remove schemes that are not in the Package.swift anymore | ||
removeNotGeneratedSchemes: true | ||
|
||
# Force the overwrite of already present scheme | ||
overwriteAlreadyGeneratedSchemes: false | ||
|
||
# This allow to have more info in the console for debug purpose | ||
verbose: false | ||
``` | ||
Have fun |