-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPackage.swift
More file actions
24 lines (22 loc) · 744 Bytes
/
Copy pathPackage.swift
File metadata and controls
24 lines (22 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// swift-tools-version:5.1
import PackageDescription
let package = Package(
name: "ImageAttributesPublishPlugin",
products: [
.library(
name: "ImageAttributesPublishPlugin",
targets: ["ImageAttributesPublishPlugin"]),
],
dependencies: [
.package(url: "https://github.com/alexaubry/HTMLString", from: "4.0.2"),
.package(url: "https://github.com/johnsundell/publish.git", from: "0.1.0"),
],
targets: [
.target(
name: "ImageAttributesPublishPlugin",
dependencies: ["HTMLString", "Publish"]),
.testTarget(
name: "ImageAttributesPublishPluginTests",
dependencies: ["ImageAttributesPublishPlugin"]),
]
)