fix: update remaining ClawdbotKit path references to MoltbotKit

- scripts/bundle-a2ui.sh: A2UI_APP_DIR path
- package.json: format:swift and protocol:check paths
- scripts/protocol-gen-swift.ts: output paths
- .github/dependabot.yml: directory path and comment
- .gitignore: build cache paths
- .swiftformat: exclusion paths
- .swiftlint.yml: exclusion path
- apps/android/app/build.gradle.kts: assets.srcDir path
- apps/ios/project.yml: package path
- apps/ios/README.md: documentation reference
- docs/concepts/typebox.md: documentation reference
- apps/shared/MoltbotKit/Package.swift: fix argument order
This commit is contained in:
Alex Fallah
2026-01-27 11:23:02 -05:00
committed by Shadow
parent d33cd45061
commit 289440256b
5 changed files with 8 additions and 8 deletions

View File

@@ -26,11 +26,11 @@ let package = Package(
]),
.target(
name: "MoltbotKit",
path: "Sources/MoltbotKit",
dependencies: [
"MoltbotProtocol",
.product(name: "ElevenLabsKit", package: "ElevenLabsKit"),
],
path: "Sources/MoltbotKit",
resources: [
.process("Resources"),
],
@@ -39,7 +39,6 @@ let package = Package(
]),
.target(
name: "MoltbotChatUI",
path: "Sources/MoltbotChatUI",
dependencies: [
"MoltbotKit",
.product(
@@ -47,6 +46,7 @@ let package = Package(
package: "textual",
condition: .when(platforms: [.macOS, .iOS])),
],
path: "Sources/MoltbotChatUI",
swiftSettings: [
.enableUpcomingFeature("StrictConcurrency"),
]),