Skip to content

Commit

Permalink
Update formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sbooth committed Jul 8, 2024
1 parent 30414f4 commit c04d698
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,19 @@ import PackageDescription
let package = Package(
name: "JulianDayNumber",
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "JulianDayNumber",
targets: ["JulianDayNumber"]),
targets: [
"JulianDayNumber",
]),
],
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: "JulianDayNumber"),
.testTarget(
name: "JulianDayNumberTests",
dependencies: ["JulianDayNumber"]),
dependencies: [
"JulianDayNumber",
]),
]
)

0 comments on commit c04d698

Please sign in to comment.