Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: RakuyoKit/swift
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.3.1
Choose a base ref
...
head repository: RakuyoKit/swift
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 515 additions and 112 deletions.
  1. +1 −1 .github/workflows/main.yml
  2. +2 −1 Gemfile.lock
  3. +1 −1 Package.resolved
  4. +5 −5 Package.swift
  5. +495 −99 README.md
  6. +9 −2 Sources/RakuyoSwiftFormatTool/rakuyo.swiftformat
  7. +2 −3 Sources/RakuyoSwiftFormatTool/swiftlint.yml
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ on:
branches: [ master ]

jobs:
test-package-plugin-macos-13:
test-package-plugin:
name: Test Package Plugin
runs-on: macos-13
strategy:
3 changes: 2 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -4,10 +4,11 @@ GEM
rake (13.0.6)

PLATFORMS
arm64-darwin-23
ruby

DEPENDENCIES
rake (~> 13.0.0)!

BUNDLED WITH
2.1.4
2.5.4
2 changes: 1 addition & 1 deletion Package.resolved
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
{
"identity" : "swift-argument-parser",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-argument-parser",
"location" : "https://github.com/apple/swift-argument-parser.git",
"state" : {
"revision" : "41982a3656a71c768319979febd796c6fd111d5c",
"version" : "1.5.0"
10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ let package = Package(
.plugin(name: "FormatSwift", targets: ["FormatSwift"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.5.0"),
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.5.0"),
],
targets: [
.plugin(
@@ -24,7 +24,7 @@ let package = Package(
),
dependencies: [
"RakuyoSwiftFormatTool",
"SwiftFormat",
"swiftformat",
"SwiftLintBinary",
]
),
@@ -46,9 +46,9 @@ let package = Package(
),

.binaryTarget(
name: "SwiftFormat",
url: "https://github.com/nicklockwood/SwiftFormat/releases/download/0.54.2/SwiftFormat.artifactbundle.zip",
checksum: "eabe5aacab8a8359820a158f7af0aa222669983662e64bf7430767cd4d326e47"
name: "swiftformat",
url: "https://github.com/nicklockwood/SwiftFormat/releases/download/0.55.0/SwiftFormat.artifactbundle.zip",
checksum: "83bf5673561eff20d407d6642e3572dfbd8e6c129eab66e950f361af424b0b0f"
),

.binaryTarget(
Loading