Skip to content

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
crescentheaded committed Feb 10, 2024
1 parent b64ca6a commit 8a5646b
Show file tree
Hide file tree
Showing 97 changed files with 689 additions and 1,949 deletions.
Empty file added Configuration/config.xcconfig
Empty file.
Empty file added LICENSE/LICENSE.txt
Empty file.
24 changes: 18 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,20 +1,32 @@
// swift-tools-version: 5.9.0
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "AccessibilityDocumentation",
platforms: [.iOS(.v17)],
name: "iOSAccessibilityHandbook",
platforms: [
.macOS(.v11),
.iOS(.v17),
.watchOS(.v7),
.tvOS(.v13)
],
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.

.library(
name: "AccessibilityDocumentation",
targets: ["AccessibilityDocumentation"]),
name: "iOSAccessibilityHandbook",
targets: ["iOSAccessibilityHandbook"]
)
],
dependencies: [
.package(url: "https://github.com/apple/swift-docc-plugin", 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.
.target(
name: "AccessibilityDocumentation"),
name: "iOSAccessibilityHandbook"
)
]
)
Loading

0 comments on commit 8a5646b

Please sign in to comment.