Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/VerifyChanges.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
env:
DEV_BUILDS: DevBuilds/Sources
OTHER_XCBEAUTIFY_FLAGS: --renderer github-actions
OTHER_XCODE_FLAGS: -skipMacroValidation
XCCOV_PRETTY_VERSION: 1.2.0
XCODE_SCHEME: DevConfiguration
XCODE_DESTINATION: ${{ matrix.xcode_destination }}
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 12 additions & 3 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/apple/swift-configuration", from: "1.1.0"),
.package(url: "https://github.com/DevKitOrganization/DevFoundation.git", from: "1.7.0"),
.package(url: "https://github.com/DevKitOrganization/DevFoundation.git", from: "1.8.1"),
.package(url: "https://github.com/DevKitOrganization/DevTesting", from: "1.5.0"),
],
targets: [
Expand Down
2 changes: 1 addition & 1 deletion Scripts/format
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ REPO_ROOT="$(dirname "$SCRIPT_DIR")"

# Run swift format with --in-place to fix formatting issues
swift format --in-place --recursive \
"$REPO_ROOT/Packages/" \
"$REPO_ROOT/App/" \
"$REPO_ROOT/Sources/" \
"$REPO_ROOT/Tests/"
5 changes: 4 additions & 1 deletion Scripts/lint
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
REPO_ROOT="$(dirname "$SCRIPT_DIR")"

# Run swift format lint with full paths to preserve user's PWD
swift format lint --recursive --strict "$REPO_ROOT/Sources/" "$REPO_ROOT/Tests/"
swift format lint --recursive --strict \
"$REPO_ROOT/App/" \
"$REPO_ROOT/Sources/" \
"$REPO_ROOT/Tests/"
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public struct RegisteredConfigVariable: Sendable {
///
/// - Parameter keyPath: A keypath to a property on `ConfigVariableMetadata`.
/// - Returns: The value of the metadata property.
subscript<MetadataValue>(
public subscript<MetadataValue>(
dynamicMember keyPath: KeyPath<ConfigVariableMetadata, MetadataValue>
) -> MetadataValue {
metadata[keyPath: keyPath]
Expand Down
Loading