A template is a board folder the ordinary loader reads — no second schema, no Swift catalog. BoardTemplate became exactly that: a loaded BoardModel with chooser-facing derivations, the lane-title stub gone. TemplateEngine instantiates by the copy-remint-restamp walk: .git and .trash excluded at top level only — both names mean something at a board root and nowhere else, and .gitignore must survive — every materialized folder reminted, created/modified stamped fresh (born today, not forked), modified-by cleared, the template: key carried inert, the blurb and style inherited, and loose card files normalized at this import boundary per the paste precedent so a new board never opens with a notice about a mess its own birth made. Legacy deleted: keys copy through verbatim to the one migrator — stripping would resurrect, skipping would destroy. Atomicity is construct-then-clean: a sibling temp can be sandbox-refused and a cross-volume rename is just a second copy, so the call removes what it created on every non-board exit and never touches an occupied destination. The cancellable per-item walk extracted into BoardTreeCopy serves Duplicate and instantiation with two parameters — top-level exclusions and folder-attribute carriage, the only axes they differ on. Claude-Session: https://claude.ai/code/session_01SR4XGjmBE16ZUYWpfFHXwY
220 lines
7.9 KiB
YAML
220 lines
7.9 KiB
YAML
name: Kanban
|
|
options:
|
|
bundleIdPrefix: dev.rzen.indie
|
|
deploymentTarget:
|
|
macOS: "26.0"
|
|
xcodeVersion: "26.0"
|
|
defaultConfig: Debug
|
|
|
|
packages:
|
|
Yams:
|
|
url: https://github.com/jpsim/Yams.git
|
|
from: 6.0.0
|
|
# apple/swift-markdown — the card window's Preview parser (05-card-window.md ▸ Preview).
|
|
# Pinned to the next *minor* rather than the next major because the package is pre-1.0: a
|
|
# `from:` range here would silently accept 0.9's breaking changes, which is not what `from:`
|
|
# means for Yams at 6.x.
|
|
swift-markdown:
|
|
url: https://github.com/apple/swift-markdown.git
|
|
minorVersion: 0.8.0
|
|
|
|
settings:
|
|
base:
|
|
SWIFT_VERSION: "6.0"
|
|
MACOSX_DEPLOYMENT_TARGET: "26.0"
|
|
DEVELOPMENT_TEAM: ${APPLE_TEAM_ID}
|
|
ENABLE_USER_SCRIPT_SANDBOXING: NO
|
|
|
|
# The edition split (12-editions.md ▸ Targets). Two app targets compiled from one source tree:
|
|
# base builds `Kanban/` alone, Pro builds `Kanban/` *plus* `KanbanPro/`. There is no build flag
|
|
# and no `#if` in shared code — "why a real split and not feature flags" (12) is answered by the
|
|
# file list, so an edition difference is always a file one target compiles and the other does not.
|
|
# libgit2 arrives on the Pro target with pro-m1; the target, its entitlements and its source root
|
|
# exist now so that milestone lands without re-splitting anything.
|
|
#
|
|
# YAML anchors (`&name` / `*name`) carry the genuinely identical parts across the two apps and the
|
|
# two unit-test bundles. They are resolved by the YAML parser before XcodeGen sees the file, so
|
|
# they cost nothing at generate time and cannot drift the way copy-paste does.
|
|
targets:
|
|
# MARK: - Lanework (base)
|
|
|
|
Kanban:
|
|
type: application
|
|
platform: macOS
|
|
sources:
|
|
- Kanban
|
|
# The bundled template store (09-templates.md ▸ Definition format): real board folders,
|
|
# copied into `Contents/Resources/Templates/` verbatim as a folder reference — the same
|
|
# arrangement `Fixtures/` uses below, and for the same reason. A template is a board, so it
|
|
# must reach the bundle as directories on disk, not as flattened resource files.
|
|
- path: Templates
|
|
type: folder
|
|
buildPhase: resources
|
|
dependencies: &appDependencies
|
|
- package: Yams
|
|
- package: swift-markdown
|
|
product: Markdown
|
|
postBuildScripts: &updateBuildInfo
|
|
- script: '"${SRCROOT}/../indie-skills/skills/app-versioning/scripts/update_build_info.sh"'
|
|
name: Update Build Info
|
|
shell: /bin/sh
|
|
basedOnDependencyAnalysis: false
|
|
inputFiles:
|
|
- $(TARGET_BUILD_DIR)/$(INFOPLIST_PATH)
|
|
- $(DWARF_DSYM_FOLDER_PATH)/$(DWARF_DSYM_FILE_NAME)/Contents/Info.plist
|
|
settings:
|
|
base:
|
|
# Base keeps the current identifier — it is the app that ships first, so nothing
|
|
# re-wires (12 ▸ Targets, ruled 2026-07-27).
|
|
PRODUCT_BUNDLE_IDENTIFIER: dev.rzen.indie.Kanban
|
|
MARKETING_VERSION: "2.0"
|
|
INFOPLIST_FILE: Kanban/Info.plist
|
|
CODE_SIGN_ENTITLEMENTS: Kanban/Kanban.entitlements
|
|
GENERATE_INFOPLIST_FILE: false
|
|
SWIFT_STRICT_CONCURRENCY: complete
|
|
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
|
|
|
|
# MARK: - Lanework Pro
|
|
|
|
KanbanPro:
|
|
type: application
|
|
platform: macOS
|
|
sources:
|
|
# The shared tree, minus the three files that are base's *identity* rather than its code.
|
|
# (XcodeGen already keeps `Info.plist` and `.entitlements` out of build phases; excluding
|
|
# them here keeps them out of the Pro target's file list too, so there is exactly one
|
|
# plist and one entitlements file visible per app.)
|
|
- path: Kanban
|
|
excludes:
|
|
- Info.plist
|
|
- Kanban.entitlements
|
|
- Assets.xcassets
|
|
- Assets.xcassets/**
|
|
# Pro's own source root — reserved now, filled by pro-m1. See KanbanPro/Edition/ProEdition.swift.
|
|
- path: KanbanPro
|
|
excludes:
|
|
- Info.plist
|
|
- KanbanPro.entitlements
|
|
# The same bundled template store — the inventory is the app's, not an edition's.
|
|
- path: Templates
|
|
type: folder
|
|
buildPhase: resources
|
|
dependencies: *appDependencies
|
|
postBuildScripts: *updateBuildInfo
|
|
settings:
|
|
base:
|
|
PRODUCT_BUNDLE_IDENTIFIER: dev.rzen.indie.KanbanPro
|
|
MARKETING_VERSION: "2.0"
|
|
INFOPLIST_FILE: KanbanPro/Info.plist
|
|
CODE_SIGN_ENTITLEMENTS: KanbanPro/KanbanPro.entitlements
|
|
GENERATE_INFOPLIST_FILE: false
|
|
SWIFT_STRICT_CONCURRENCY: complete
|
|
ASSETCATALOG_COMPILER_APPICON_NAME: AppIconPro
|
|
# Spelled out because the whole shared-test-sources arrangement below hangs on it: the two
|
|
# apps must have *different* Swift module names, since both emit `<module>.swiftmodule`
|
|
# into the same `Build/Products/<config>/` and equal names would have one app silently
|
|
# overwrite the other's testable interface.
|
|
PRODUCT_MODULE_NAME: KanbanPro
|
|
|
|
# MARK: - Unit tests
|
|
#
|
|
# One suite, run twice — once hosted by each app. Every test in `KanbanTests/` is
|
|
# edition-agnostic (it exercises the storage format, the live store and the UI model, none of
|
|
# which differ between editions), so duplicating the *sources* would be duplicating the thing
|
|
# that is identical; what is worth running twice is the suite against each *binary*, which is
|
|
# what these two targets do. The Pro bundle compiles the very same files — it is the same
|
|
# `sources` list, by anchor — against `KanbanPro`.
|
|
|
|
KanbanTests:
|
|
type: bundle.unit-test
|
|
platform: macOS
|
|
sources: &unitTestSources
|
|
- KanbanTests
|
|
- path: Fixtures
|
|
type: folder
|
|
buildPhase: resources
|
|
dependencies:
|
|
- target: Kanban
|
|
settings:
|
|
base:
|
|
PRODUCT_BUNDLE_IDENTIFIER: dev.rzen.indie.KanbanTests
|
|
GENERATE_INFOPLIST_FILE: true
|
|
SWIFT_STRICT_CONCURRENCY: complete
|
|
|
|
KanbanProTests:
|
|
type: bundle.unit-test
|
|
platform: macOS
|
|
sources: *unitTestSources
|
|
dependencies:
|
|
- target: KanbanPro
|
|
settings:
|
|
base:
|
|
PRODUCT_BUNDLE_IDENTIFIER: dev.rzen.indie.KanbanProTests
|
|
GENERATE_INFOPLIST_FILE: true
|
|
SWIFT_STRICT_CONCURRENCY: complete
|
|
# The shared sources say `@testable import Kanban`, and they should: they are testing the
|
|
# app, not an edition. `-module-alias` (Swift 5.7+) resolves that import to the Pro
|
|
# module for this bundle only — the supported way to bind one source name to a different
|
|
# module, and it keeps the 56 test files edition-blind instead of littering them with
|
|
# conditional imports.
|
|
OTHER_SWIFT_FLAGS: -module-alias Kanban=KanbanPro
|
|
|
|
# MARK: - UI tests
|
|
#
|
|
# Base-only, deliberately: the single test here is `testAppLaunches`, and a second copy would
|
|
# double the slowest, most environment-dependent part of the suite to re-assert something the
|
|
# Pro unit bundle already proves (it launches the Pro app as its test host on every run).
|
|
|
|
KanbanUITests:
|
|
type: bundle.ui-testing
|
|
platform: macOS
|
|
sources:
|
|
- KanbanUITests
|
|
dependencies:
|
|
- target: Kanban
|
|
settings:
|
|
base:
|
|
PRODUCT_BUNDLE_IDENTIFIER: dev.rzen.indie.KanbanUITests
|
|
GENERATE_INFOPLIST_FILE: true
|
|
SWIFT_STRICT_CONCURRENCY: complete
|
|
|
|
schemes:
|
|
# `Kanban` is unchanged, on purpose: `xcodebuild … -scheme Kanban` is the established command
|
|
# for this repo and base is the app it has always meant.
|
|
Kanban:
|
|
build:
|
|
targets:
|
|
Kanban: all
|
|
run:
|
|
config: Debug
|
|
test:
|
|
config: Debug
|
|
gatherCoverageData: false
|
|
targets:
|
|
- KanbanTests
|
|
- KanbanUITests
|
|
profile:
|
|
config: Release
|
|
analyze:
|
|
config: Debug
|
|
archive:
|
|
config: Release
|
|
|
|
LaneworkPro:
|
|
build:
|
|
targets:
|
|
KanbanPro: all
|
|
run:
|
|
config: Debug
|
|
test:
|
|
config: Debug
|
|
gatherCoverageData: false
|
|
targets:
|
|
- KanbanProTests
|
|
profile:
|
|
config: Release
|
|
analyze:
|
|
config: Debug
|
|
archive:
|
|
config: Release
|