Skip to content

Commit f3c8d6f

Browse files
committed
[skip ci] setting up syntaxkit
1 parent aa31db7 commit f3c8d6f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Package.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ let package = Package(
1717
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.4.0"),
1818
.package(url: "https://github.com/swiftlang/swift-syntax.git", from: "601.0.0-prerelease-2024-11-18"),
1919
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.4.0"),
20-
.package(url: "https://github.com/apple/swift-log.git", from: "1.6.0")
20+
.package(url: "https://github.com/apple/swift-log.git", from: "1.6.0"),
21+
.package(path: "Packages/SyntaxKit")
2122
],
2223
targets: [
2324
// Targets are the basic building blocks of a package, defining a module or a test suite.
@@ -28,6 +29,7 @@ let package = Package(
2829
.product(name: "SwiftSyntax", package: "swift-syntax"),
2930
.product(name: "SwiftParser", package: "swift-syntax"),
3031
.product(name: "SwiftSyntaxBuilder", package: "swift-syntax"),
32+
.product(name: "SyntaxKit", package: "SyntaxKit"),
3133
.product(
3234
name: "Logging",
3335
package: "swift-log",

project.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ settings:
44
packages:
55
PackageDSLKit:
66
path: .
7+
SyntaxKit:
8+
path: Packages/SyntaxKit
79
aggregateTargets:
810
Lint:
911
buildScripts:

0 commit comments

Comments
 (0)