-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.yml
More file actions
99 lines (93 loc) · 2.63 KB
/
Copy pathproject.yml
File metadata and controls
99 lines (93 loc) · 2.63 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
name: TypeCue
options:
bundleIdPrefix: com.alexpo
deploymentTarget:
macOS: "14.0"
createIntermediateGroups: true
xcodeVersion: "26.0"
settings:
base:
SWIFT_VERSION: "6.0"
MARKETING_VERSION: "0.1.1"
CURRENT_PROJECT_VERSION: "2"
DEVELOPMENT_TEAM: TK8UD5BXJM
CODE_SIGN_STYLE: Automatic
configs:
# Hardened runtime is only needed for notarized distribution. Enabling it in Debug
# breaks UI test bundle injection (library validation rejects the ad-hoc-signed
# xctest bundle), so scope it to Release.
Release:
ENABLE_HARDENED_RUNTIME: YES
packages:
KeyboardShortcuts:
url: https://github.com/sindresorhus/KeyboardShortcuts
from: 2.0.0
Sauce:
url: https://github.com/Clipy/Sauce
from: 2.0.0
targets:
TypeCue:
type: application
platform: macOS
sources:
- path: Sources/TypeCue
- path: THIRD-PARTY-LICENSES.md
buildPhase: resources
dependencies:
- package: KeyboardShortcuts
- package: Sauce
info:
path: Sources/TypeCue/Info.plist
properties:
LSUIElement: true
CFBundleName: TypeCue
CFBundleDisplayName: TypeCue
CFBundleShortVersionString: $(MARKETING_VERSION)
CFBundleVersion: $(CURRENT_PROJECT_VERSION)
NSAppleEventsUsageDescription: TypeCue uses automation to type scripted text into the focused app during demo recordings.
NSHumanReadableCopyright: "© 2026 Alex Polonsky. MIT License."
LSMinimumSystemVersion: $(MACOSX_DEPLOYMENT_TARGET)
CFBundleURLTypes:
- CFBundleURLName: com.alexpo.typecue
CFBundleURLSchemes: [typecue]
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.alexpo.typecue
GENERATE_INFOPLIST_FILE: NO
COMBINE_HIDPI_IMAGES: YES
ENABLE_APP_SANDBOX: NO
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
TypeCueTests:
type: bundle.unit-test
platform: macOS
sources:
- path: Sources/TypeCueTests
dependencies:
- target: TypeCue
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.alexpo.typecue.tests
GENERATE_INFOPLIST_FILE: YES
TypeCueUITests:
type: bundle.ui-testing
platform: macOS
sources:
- path: Sources/TypeCueUITests
dependencies:
- target: TypeCue
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.alexpo.typecue.uitests
GENERATE_INFOPLIST_FILE: YES
schemes:
TypeCue:
build:
targets:
TypeCue: all
TypeCueTests: [test]
TypeCueUITests: [test]
test:
targets:
- TypeCueTests
- TypeCueUITests
gatherCoverageData: true