Skip to content

Commit

Permalink
main Update project structure to avoid locally defined modules
Browse files Browse the repository at this point in the history
  • Loading branch information
iharkatkavets committed Aug 26, 2023
1 parent 5077873 commit 7769bd4
Show file tree
Hide file tree
Showing 11 changed files with 4 additions and 22 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.DS_Store
build/
.build/
.swiftpm/
/Packages
Expand Down
15 changes: 0 additions & 15 deletions Core/Package.swift

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 3 additions & 7 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,19 @@ import PackageDescription

let package = Package(
name: "StreamKit",
platforms: [
.macOS(.v12),
.iOS(.v13)
],
products: [
.library(
name: "StreamKit",
targets: ["StreamKit"]),
],
dependencies: [
.package(path: "Core"),
],
targets: [
.target(
name: "StreamKit",
dependencies: ["Core"],
path: "Sources"),
.target(
name: "Core",
path: "Core"),
.testTarget(
name: "StreamKitTests",
dependencies: ["StreamKit"],
Expand Down

0 comments on commit 7769bd4

Please sign in to comment.