Skip to content

Commit b134ce5

Browse files
committed
chore(infra): remove git-subrepo, convert to remote branch-based dependencies
- Removed Packages/SundialKitStream and Packages/SundialKitCombine subrepo directories - Updated Examples/Sundial/Package.swift to use remote GitHub URLs for plugins - Plugin repositories now use branch-based dependencies (v1.0.0 for plugins, v2.0.0 for main package) - Verified demo apps build successfully with remote dependencies This completes the transition from monorepo + git-subrepo to multi-repository architecture with Swift Package Manager remote dependencies. Documentation updates to follow in subsequent commit.
1 parent 484bc33 commit b134ce5

111 files changed

Lines changed: 36 additions & 11990 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Examples/Sundial/Package.resolved

Lines changed: 28 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Examples/Sundial/Package.swift

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,18 @@ let package = Package(
3434
),
3535
// SundialKit core (parent package)
3636
.package(
37-
name: "SundialKit",
38-
path: "../.."
37+
url: "https://github.com/brightdigit/SundialKit.git",
38+
branch: "v2.0.0"
3939
),
40-
// SundialKitCombine plugin (subrepo)
40+
// SundialKitCombine plugin
4141
.package(
42-
name: "SundialKitCombine",
43-
path: "../../Packages/SundialKitCombine"
42+
url: "https://github.com/brightdigit/SundialKitCombine.git",
43+
branch: "v1.0.0"
4444
),
45-
// SundialKitStream plugin (subrepo)
45+
// SundialKitStream plugin
4646
.package(
47-
name: "SundialKitStream",
48-
path: "../../Packages/SundialKitStream"
47+
url: "https://github.com/brightdigit/SundialKitStream.git",
48+
branch: "v1.0.0"
4949
)
5050
],
5151
targets: [

Packages/SundialKitCombine/.devcontainer/devcontainer.json

Lines changed: 0 additions & 32 deletions
This file was deleted.

Packages/SundialKitCombine/.devcontainer/swift-6.1-nightly/devcontainer.json

Lines changed: 0 additions & 32 deletions
This file was deleted.

Packages/SundialKitCombine/.devcontainer/swift-6.1/devcontainer.json

Lines changed: 0 additions & 32 deletions
This file was deleted.

Packages/SundialKitCombine/.devcontainer/swift-6.2-nightly/devcontainer.json

Lines changed: 0 additions & 40 deletions
This file was deleted.

Packages/SundialKitCombine/.devcontainer/swift-6.2/devcontainer.json

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)