Skip to content

Commit

Permalink
Merge pull request #30 from conmulligan/swift-6
Browse files Browse the repository at this point in the history
Move language mode declaration
  • Loading branch information
conmulligan authored Nov 26, 2024
2 parents bb83a2a + 73c9d14 commit 1d2d22a
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,10 @@ let package = Package(
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "Flash",
dependencies: [],
swiftSettings: [
.swiftLanguageMode(.v6)
]),
dependencies: []),
.testTarget(
name: "FlashTests",
dependencies: ["Flash"]),
]
],
swiftLanguageModes: [.v6]
)

0 comments on commit 1d2d22a

Please sign in to comment.