forked from RedMadRobot/figma-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
89 lines (80 loc) · 2.9 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// swift-tools-version:5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "figma-export",
platforms: [
.macOS(.v10_13)
],
products: [
.executable(name: "figma-export", targets: ["FigmaExport"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.0.0"),
.package(url: "https://github.com/jpsim/Yams.git", from: "5.0.0"),
.package(url: "https://github.com/apple/swift-log.git", from: "1.4.0"),
.package(url: "https://github.com/stencilproject/Stencil.git", from: "0.15.1"),
.package(url: "https://github.com/SwiftGen/StencilSwiftKit", from: "2.10.1"),
.package(url: "https://github.com/tuist/XcodeProj.git", from: "8.8.0"),
.package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "0.6.0")
],
targets: [
// Main target
.executableTarget(
name: "FigmaExport",
dependencies: [
"FigmaAPI",
"FigmaExportCore",
"XcodeExport",
"AndroidExport",
.product(name: "XcodeProj", package: "XcodeProj"),
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "Yams", package: "Yams"),
.product(name: "Logging", package: "swift-log")
]
),
// Shared target
.target(name: "FigmaExportCore"),
// Loads data via Figma REST API
.target(name: "FigmaAPI"),
// Exports resources to Xcode project
.target(
name: "XcodeExport",
dependencies: [
"FigmaExportCore", .product(name: "Stencil", package: "Stencil"),
"StencilSwiftKit"
],
resources: [
.copy("Resources/")
]
),
// Exports resources to Android project
.target(
name: "AndroidExport",
dependencies: ["FigmaExportCore", "Stencil", "StencilSwiftKit"],
resources: [
.copy("Resources/")
]
),
// MARK: - Tests
.testTarget(
name: "FigmaExportTests",
dependencies: ["FigmaExport"]
),
.testTarget(
name: "FigmaExportCoreTests",
dependencies: ["FigmaExportCore"]
),
.testTarget(
name: "XcodeExportTests",
dependencies: [
"XcodeExport", .product(name: "CustomDump", package: "swift-custom-dump"),
"StencilSwiftKit"
]
),
.testTarget(
name: "AndroidExportTests",
dependencies: ["AndroidExport", .product(name: "CustomDump", package: "swift-custom-dump")]
)
]
)