feat: Initial commit.
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 2m50s
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 2m50s
This commit is contained in:
26
Package.swift
Normal file
26
Package.swift
Normal file
@@ -0,0 +1,26 @@
|
||||
// swift-tools-version: 5.10
|
||||
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
||||
|
||||
import PackageDescription
|
||||
|
||||
let package = Package(
|
||||
name: "SagaTable",
|
||||
platforms: [.macOS(.v12)],
|
||||
dependencies: [
|
||||
.package(url: "https://github.com/loopwerk/Saga", from: "2.0.0"),
|
||||
.package(url: "https://github.com/loopwerk/SagaParsleyMarkdownReader", from: "1.0.0"),
|
||||
.package(url: "https://github.com/loopwerk/SagaSwimRenderer", from: "1.0.0"),
|
||||
],
|
||||
targets: [
|
||||
// Targets are the basic building blocks of a package, defining a module or a test suite.
|
||||
// Targets can depend on other targets in this package and products from dependencies.
|
||||
.executableTarget(
|
||||
name: "Site",
|
||||
dependencies: [
|
||||
.product(name: "Saga", package: "Saga"),
|
||||
.product(name: "SagaParsleyMarkdownReader", package: "SagaParsleyMarkdownReader"),
|
||||
.product(name: "SagaSwimRenderer", package: "SagaSwimRenderer"),
|
||||
]
|
||||
)
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user