diff --git a/Package.swift b/Package.swift index 9ca2f27..5dc5d52 100644 --- a/Package.swift +++ b/Package.swift @@ -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", + ]), ] )