This repository was archived by the owner on Dec 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
59 lines (56 loc) · 1.37 KB
/
project.yml
File metadata and controls
59 lines (56 loc) · 1.37 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: SubsClient
packages:
GRPC:
url: https://github.com/grpc/grpc-swift
from: 1.0.0-alpha.12
ComposableArchitecture:
url: https://github.com/pointfreeco/swift-composable-architecture
from: 0.3.0
FetchImage:
url: https://github.com/kean/FetchImage
from: 0.2.1
Grid:
url: https://github.com/spacenation/swiftui-grid
from: 1.0.4
targetTemplates:
Framework:
platform: iOS
type: framework
deploymentTarget: "13.0"
sources:
- path: ${target_name}
settings:
PRODUCT_BUNDLE_IDENTIFIER: "jp.ca21engineer.SubsClient.${target_name}"
UnitTest:
type: bundle.unit-test
platform: iOS
sources:
- path: ${target_name}
dependencies:
- target: ${target_name}
- target: SubsClient
targets:
Core:
templates:
- Framework
dependencies:
- package: ComposableArchitecture
- package: GRPC
SubsClient:
type: application
platform: iOS
deploymentTarget: "13.0"
sources: [SubsClient]
preBuildScripts:
- path: scripts/lint.sh
name: "Run Lint"
postBuildScripts:
- path: scripts/format.sh
name: "Run Format"
settings:
PRODUCT_BUNDLE_IDENTIFIER: jp.ca21engineer.SubsClient
CODE_SIGN_ENTITLEMENTS: SubsClient/SubsClient.entitlements
dependencies:
- package: FetchImage
- package: Grid
- target: Core