-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathproject.yml
65 lines (60 loc) · 1.95 KB
/
project.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
name: FlashSpace
options:
createIntermediateGroups: true
indentWidth: 4
tabWidth: 4
groupSortPosition: top
bundleIdPrefix: pl.wojciechkulik
packages:
ShortcutRecorder:
github: Kentzo/ShortcutRecorder
from: 3.4.0
SymbolPicker:
github: xnth97/SymbolPicker
from: 1.6.0
targets:
FlashSpace:
type: application
platform: macOS
deploymentTarget: "14.0"
sources: [FlashSpace]
settings:
base:
MARKETING_VERSION: 1.2.18
CURRENT_PROJECT_VERSION: 18
CODE_SIGN_ENTITLEMENTS: FlashSpace/FlashSpace.entitlements
DEVELOPMENT_TEAM: "${XCODE_DEVELOPMENT_TEAM}"
ENABLE_HARDENED_RUNTIME: true
DEAD_CODE_STRIPPING: true
ENABLE_USER_SCRIPT_SANDBOXING: false
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS: YES
GENERATE_INFOPLIST_FILE: true
INFOPLIST_KEY_LSApplicationCategoryType: public.app-category.productivity
INFOPLIST_KEY_LSUIElement: true
INFOPLIST_KEY_CFBundleDisplayName: FlashSpace
INFOPLIST_KEY_NSHumanReadableCopyright: © 2025 Wojciech Kulik. All rights reserved.
configs:
debug:
INFOPLIST_KEY_CFBundleDisplayName: FlashSpace Dev
PRODUCT_NAME: FlashSpace-Dev
PRODUCT_BUNDLE_IDENTIFIER: pl.wojciechkulik.FlashSpace.dev
dependencies:
- sdk: ServiceManagement.framework
- package: ShortcutRecorder
- package: SymbolPicker
preBuildScripts:
- name: Run SwiftLint
script: |
if [ "$GITHUB_ACTIONS" != "true" ]; then
/opt/homebrew/bin/swiftlint --use-alternative-excluding
fi
basedOnDependencyAnalysis: false
showEnvVars: false
- name: Run SwiftFormat
script: |
if [ "$GITHUB_ACTIONS" != "true" ]; then
/opt/homebrew/bin/swiftformat --lint ${SRCROOT} --config .swiftformat || exit 0
fi
basedOnDependencyAnalysis: false
showEnvVars: false