Skip to content

Commit

Permalink
Merge pull request #16 from Blackjacx/spm-support
Browse files Browse the repository at this point in the history
Add SPM Support
  • Loading branch information
Blackjacx authored Sep 17, 2019
2 parents 877ea0b + 8e7d162 commit 5d0d667
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,11 @@ Pods/
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build

# SPM
.swiftpm

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

## [Unreleased]
* [#16](https://github.com/Blackjacx/Source/pull/16): Add SPM Support - [@Blackjacx](https://github.com/blackjacx).

## [1.0.8] - 2019-08-12
* Rename DidDeleteClosure && DidTapClosure > IndexPathClosure - [@Blackjacx](https://github.com/blackjacx).
Expand Down
24 changes: 24 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// swift-tools-version:5.1

import PackageDescription

let package = Package(
name: "Source",
platforms: [
// .macOS(.v10_12),
.iOS(.v11),
// .tvOS(.v10),
// .watchOS(.v3)
],
products: [
.library(
name: "Source",
targets: ["Source"])
],
targets: [
.target(
name: "Source",
path: "Source")
],
swiftLanguageVersions: [.v5]
)

0 comments on commit 5d0d667

Please sign in to comment.