Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenLambion committed Jun 14, 2019
1 parent 01ff219 commit 395fed8
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions Package.swift
Expand Up @@ -4,29 +4,29 @@
import PackageDescription

let package = Package(
name: "SwiftDux",
platforms: [
.iOS(.v13),
.macOS(.v10_15),
name: "SwiftDux",
platforms: [
.iOS(.v13),
.macOS(.v10_15),
],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "SwiftDux",
targets: ["SwiftDux"]),
],
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 which this package depends on.
.target(
name: "SwiftDux",
dependencies: []),
.testTarget(
name: "SwiftDuxTests",
dependencies: ["SwiftDux"]),
]
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "SwiftDux",
targets: ["SwiftDux"]),
],
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 which this package depends on.
.target(
name: "SwiftDux",
dependencies: []),
.testTarget(
name: "SwiftDuxTests",
dependencies: ["SwiftDux"]),
]
)

0 comments on commit 395fed8

Please sign in to comment.