Skip to content

Commit

Permalink
Add Package@swift-4.2.swift for backward compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
devxoul committed Mar 31, 2019
1 parent 14776a9 commit 71aaeab
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Package@swift-4.2.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// swift-tools-version:4.2
import PackageDescription

let package = Package(
name: "Nimble",
products: [
.library(name: "Nimble", targets: ["Nimble"]),
],
targets: [
.target(
name: "Nimble",
dependencies: []
),
.testTarget(
name: "NimbleTests",
dependencies: ["Nimble"],
exclude: ["objc"]
),
],
swiftLanguageVersions: [.v4_2]
)

0 comments on commit 71aaeab

Please sign in to comment.