Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Package.swift to support Swift Package Manager #75

Merged
merged 2 commits into from Aug 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
24 changes: 23 additions & 1 deletion Package.swift
@@ -1,3 +1,4 @@
// swift-tools-version:5.0
//
// Package.swift
//
Expand All @@ -24,4 +25,25 @@

import PackageDescription

let package = Package(name: "ButtonMerchant", dependencies : [], exclude: ["Tests"])
let package = Package(
name: "ButtonMerchant",
platforms: [
.iOS(.v9)
],
products: [
.library(
name: "ButtonMerchant",
targets: ["ButtonMerchant"]),
],
targets: [
.target(
name: "ButtonMerchant",
path: "Source"),
.testTarget(
name: "UnitTests",
path: "Tests/UnitTests"),
.testTarget(
name: "IntegrationTests",
path: "Tests/IntegrationTests")
]
)
83 changes: 0 additions & 83 deletions Tests/UnitTests/Models/OrderTests.swift

This file was deleted.