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 ordermain
parent
d33cd45061
commit
289440256b
|
|
@ -64,9 +64,9 @@ updates:
|
||||||
- patch
|
- patch
|
||||||
open-pull-requests-limit: 5
|
open-pull-requests-limit: 5
|
||||||
|
|
||||||
# Swift Package Manager - shared ClawdbotKit
|
# Swift Package Manager - shared MoltbotKit
|
||||||
- package-ecosystem: swift
|
- package-ecosystem: swift
|
||||||
directory: /apps/shared/ClawdbotKit
|
directory: /apps/shared/MoltbotKit
|
||||||
schedule:
|
schedule:
|
||||||
interval: weekly
|
interval: weekly
|
||||||
cooldown:
|
cooldown:
|
||||||
|
|
|
||||||
|
|
@ -19,14 +19,14 @@ ui/test-results/
|
||||||
# Bun build artifacts
|
# Bun build artifacts
|
||||||
*.bun-build
|
*.bun-build
|
||||||
apps/macos/.build/
|
apps/macos/.build/
|
||||||
apps/shared/ClawdbotKit/.build/
|
apps/shared/MoltbotKit/.build/
|
||||||
**/ModuleCache/
|
**/ModuleCache/
|
||||||
bin/
|
bin/
|
||||||
bin/clawdbot-mac
|
bin/clawdbot-mac
|
||||||
bin/docs-list
|
bin/docs-list
|
||||||
apps/macos/.build-local/
|
apps/macos/.build-local/
|
||||||
apps/macos/.swiftpm/
|
apps/macos/.swiftpm/
|
||||||
apps/shared/ClawdbotKit/.swiftpm/
|
apps/shared/MoltbotKit/.swiftpm/
|
||||||
Core/
|
Core/
|
||||||
apps/ios/*.xcodeproj/
|
apps/ios/*.xcodeproj/
|
||||||
apps/ios/*.xcworkspace/
|
apps/ios/*.xcworkspace/
|
||||||
|
|
|
||||||
|
|
@ -48,4 +48,4 @@
|
||||||
--allman false
|
--allman false
|
||||||
|
|
||||||
# Exclusions
|
# Exclusions
|
||||||
--exclude .build,.swiftpm,DerivedData,node_modules,dist,coverage,xcuserdata,Peekaboo,Swabble,apps/android,apps/ios,apps/shared,apps/macos/Sources/ClawdisProtocol,apps/macos/Sources/ClawdbotProtocol
|
--exclude .build,.swiftpm,DerivedData,node_modules,dist,coverage,xcuserdata,Peekaboo,Swabble,apps/android,apps/ios,apps/shared,apps/macos/Sources/MoltbotProtocol
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ excluded:
|
||||||
- coverage
|
- coverage
|
||||||
- "*.playground"
|
- "*.playground"
|
||||||
# Generated (protocol-gen-swift.ts)
|
# Generated (protocol-gen-swift.ts)
|
||||||
- apps/macos/Sources/ClawdbotProtocol/GatewayModels.swift
|
- apps/macos/Sources/MoltbotProtocol/GatewayModels.swift
|
||||||
|
|
||||||
analyzer_rules:
|
analyzer_rules:
|
||||||
- unused_declaration
|
- unused_declaration
|
||||||
|
|
|
||||||
|
|
@ -26,11 +26,11 @@ let package = Package(
|
||||||
]),
|
]),
|
||||||
.target(
|
.target(
|
||||||
name: "MoltbotKit",
|
name: "MoltbotKit",
|
||||||
path: "Sources/MoltbotKit",
|
|
||||||
dependencies: [
|
dependencies: [
|
||||||
"MoltbotProtocol",
|
"MoltbotProtocol",
|
||||||
.product(name: "ElevenLabsKit", package: "ElevenLabsKit"),
|
.product(name: "ElevenLabsKit", package: "ElevenLabsKit"),
|
||||||
],
|
],
|
||||||
|
path: "Sources/MoltbotKit",
|
||||||
resources: [
|
resources: [
|
||||||
.process("Resources"),
|
.process("Resources"),
|
||||||
],
|
],
|
||||||
|
|
@ -39,7 +39,6 @@ let package = Package(
|
||||||
]),
|
]),
|
||||||
.target(
|
.target(
|
||||||
name: "MoltbotChatUI",
|
name: "MoltbotChatUI",
|
||||||
path: "Sources/MoltbotChatUI",
|
|
||||||
dependencies: [
|
dependencies: [
|
||||||
"MoltbotKit",
|
"MoltbotKit",
|
||||||
.product(
|
.product(
|
||||||
|
|
@ -47,6 +46,7 @@ let package = Package(
|
||||||
package: "textual",
|
package: "textual",
|
||||||
condition: .when(platforms: [.macOS, .iOS])),
|
condition: .when(platforms: [.macOS, .iOS])),
|
||||||
],
|
],
|
||||||
|
path: "Sources/MoltbotChatUI",
|
||||||
swiftSettings: [
|
swiftSettings: [
|
||||||
.enableUpcomingFeature("StrictConcurrency"),
|
.enableUpcomingFeature("StrictConcurrency"),
|
||||||
]),
|
]),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue