Skip to content

Commit

Permalink
Remove Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tgrapperon committed Apr 28, 2022
1 parent 37eeaec commit 2558074
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 35 deletions.
47 changes: 18 additions & 29 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,34 +1,23 @@
// swift-tools-version:5.4
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "swiftui-layout-guides",
platforms: [
.iOS(.v13),
.macOS(.v10_15),
.tvOS(.v13),
.watchOS(.v6)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "SwiftUILayoutGuides",
targets: ["SwiftUILayoutGuides"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "SwiftUILayoutGuides",
dependencies: []),
.testTarget(
name: "SwiftUILayoutGuidesTests",
dependencies: ["SwiftUILayoutGuides"]),
]
name: "swiftui-layout-guides",
platforms: [
.iOS(.v13),
.macOS(.v10_15),
.tvOS(.v13),
.watchOS(.v6),
],
products: [
.library(
name: "SwiftUILayoutGuides",
targets: ["SwiftUILayoutGuides"])
],
dependencies: [],
targets: [
.target(
name: "SwiftUILayoutGuides",
dependencies: [])
]
)
6 changes: 0 additions & 6 deletions Tests/SwiftUILayoutGuidesTests/SwiftUILayoutGuidesTests.swift

This file was deleted.

0 comments on commit 2558074

Please sign in to comment.