-
Notifications
You must be signed in to change notification settings - Fork 36
/
swiftgen.yml
44 lines (41 loc) · 2.46 KB
/
swiftgen.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
## Note: all of the config entries below are just examples with placeholders. Be sure to edit and adjust to your needs when uncommenting.
## In case your config entries all use a common input/output parent directory, you can specify those here.
## Every input/output paths in the rest of the config will then be expressed relative to these.
## Those two top-level keys are optional and default to "." (the directory of the config file).
#input_dir: Tangem/Resources
#output_dir: Tangem/Resources/Generated
## Generate constants for your Assets Catalogs, including constants for images, colors, ARKit resources, etc.
## This example also shows how to provide additional parameters to your template to customize the output.
## - Especially the `forceProvidesNamespaces: true` param forces to create sub-namespace for each folder/group used in your Asset Catalogs, even the ones without "Provides Namespace". Without this param, SwiftGen only generates sub-namespaces for folders/groups which have the "Provides Namespace" box checked in the Inspector pane.
## - To know which params are supported for a template, use `swiftgen template doc xcassets swift5` to open the template documentation on GitHub.
xcassets:
inputs:
- Tangem/Resources/Assets/Tokens.xcassets
- Tangem/Resources/Assets/Assets.xcassets
- Tangem/Resources/Assets/Colors.xcassets
outputs:
- templatePath: Utilites/swiftui-xcassets.stencil
params:
removeFolderName: true
forceProvidesNamespaces: true
publicAccess: false
output: Tangem/Resources/Generated/XCAssets+Generated.swift
## Generate constants for your localized strings.
## Be sure that SwiftGen only parses ONE locale (typically Base.lproj, or en.lproj, or whichever your development region is); otherwise it will generate the same keys multiple times.
## SwiftGen will parse all `.strings` files found in that folder.
## https://github.com/SwiftGen/SwiftGen/issues/649#issuecomment-510254800
strings:
# The main app
- inputs: Tangem/Resources/Localizations/en.lproj
outputs:
templatePath: Utilites/swiftui-strings-template.stencil
output: Tangem/Resources/Generated/Localizable+Generated.swift
params:
publicAccess: false
# BSDK
- inputs: BlockchainSdk/Resources/Localizations/en.lproj
outputs:
templatePath: Utilites/swiftui-strings-template.stencil
output: BlockchainSdk/Resources/Generated/Localizable+Generated.swift
params:
publicAccess: false