Load templates and render objects

This commit is contained in:
Adam Fowler
2021-03-11 16:58:49 +00:00
parent 98f5d19e91
commit 9cbe74f9ee
10 changed files with 1036 additions and 98 deletions

View File

@@ -8,13 +8,9 @@ let package = Package(
products: [
.library(name: "HummingbirdMustache", targets: ["HummingbirdMustache"]),
],
dependencies: [
.package(url: "https://github.com/hummingbird-project/hummingbird.git", from: "0.6.0"),
],
dependencies: [],
targets: [
.target(name: "HummingbirdMustache", dependencies: [
.product(name: "Hummingbird", package: "hummingbird")
]),
.target(name: "HummingbirdMustache", dependencies: []),
.testTarget(name: "HummingbirdMustacheTests", dependencies: ["HummingbirdMustache"]),
]
)