In this episode we create a modularized setup where our modules are Swift Packages and brought into the main app using Xcodegen and local path references to the packages.
Adding local modules with xcodegen: name: DinnerTime options: bundleIdPrefix: com.ficklebits.dinnertime packages: Util: path: "../Modules/Util" Core: path: "../Modules/Core" Store: path: "../Modules/Store" targets: App: type: application platform: "iOS" deploymentTarget: "14.0" sources: [Source] dependencies: - package: Util - package: Core - package: Store ...