Skip to content

Commit

Permalink
even simpler
Browse files Browse the repository at this point in the history
  • Loading branch information
lawrence-forooghian committed Aug 2, 2024
1 parent 91409ae commit 6098c23
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 83 deletions.
60 changes: 0 additions & 60 deletions Package.resolved

This file was deleted.

28 changes: 5 additions & 23 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,34 +5,16 @@ import PackageDescription

let package = Package(
name: "AblyChat",
platforms: [
.macOS(.v10_13),
.iOS(.v12),
.tvOS(.v12),
],
/*platforms: [*/
/*.macOS(.v10_13),*/
/*.iOS(.v12),*/
/*.tvOS(.v12),*/
/*],*/
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "AblyChat",
targets: ["AblyChat"]
),
],
dependencies: [
.package(url: "https://github.com/ably/ably-cocoa", from: "1.2.0"),
.package(url: "https://github.com/SimplyDanny/SwiftLintPlugins", from: "0.55.1"),
.package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.54.0"),
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.5.0"),
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.target(
name: "AblyChat", dependencies: [.product(name: "Ably", package: "ably-cocoa")], swiftSettings: [.enableExperimentalFeature("StrictConcurrency")]
),
.testTarget(
name: "AblyChatTests",
dependencies: ["AblyChat"]
),
.executableTarget(name: "BuildTool", dependencies: [], swiftSettings: [.enableExperimentalFeature("StrictConcurrency")]),
]
)

0 comments on commit 6098c23

Please sign in to comment.