-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPackage.swift
28 lines (26 loc) · 823 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "HimmelstraeumerinBlog",
platforms: [
.macOS(.v12)
],
products: [
.executable(name: "HimmelstraeumerinBlog", targets: ["HimmelstraeumerinBlog"])
],
dependencies: [
.package(url: "https://github.com/johnsundell/publish.git", from: "0.2.0"),
.package(url: "https://github.com/johnsundell/splashpublishplugin", from: "0.1.0"),
.package(url: "https://github.com/alexito4/ReadingTimePublishPlugin", from: "0.1.0")
],
targets: [
.executableTarget(
name: "HimmelstraeumerinBlog",
dependencies: [
.product(name: "Publish", package: "Publish"),
.product(name: "SplashPublishPlugin", package: "SplashPublishPlugin"),
.product(name: "ReadingTimePublishPlugin", package: "ReadingTimePublishPlugin")
]
)
]
)