Compare commits

...

3 commits

Author SHA1 Message Date
df3d60940b chore: Update TailwindCSSCLI binary URL and checksum
Some checks failed
CI / Test on Linux (push) Has been cancelled
CI / Test on Linux-1 (push) Has been cancelled
CI / Test on macOS (push) Has been cancelled
CI / Test on macOS-1 (push) Has been cancelled
2026-01-21 13:56:26 +08:00
6211adec8e fix: Add macOS arm64 'arm64-apple-macosx' triple
Support new Apple Silicon triple used by the Swift 6.3 toolchain.
2026-01-21 13:51:36 +08:00
c9cbf7f133 chore: Update TailwindCSSCLI to v4.1.18 2026-01-21 09:07:10 +08:00
2 changed files with 4 additions and 2 deletions

View file

@ -25,8 +25,8 @@ let package = Package(
.binaryTarget(
name: "TailwindCSSCLI",
url:
"https://github.com/laosb/SwiftTailwind/releases/download/1.1.0-test.4+tw.4.1.14/tailwindcss.artifactbundleindex",
checksum: "ec4df49e361db5fc3159c431e5661af2e1b22d8575c64ce0482a8e84cfd93d04"
"https://github.com/laosb/SwiftTailwind/releases/download/TailwindCSSCLI-v4.1.18-1e1d57de8a8984c528a106f038fb432b3965b1873c8603ee6bd661f935a77f4a/tailwindcss.artifactbundleindex",
checksum: "1e1d57de8a8984c528a106f038fb432b3965b1873c8603ee6bd661f935a77f4a"
),
.target(
name: "SwiftTailwindExample",

View file

@ -10,6 +10,8 @@ class ArtifactBundleBuilder {
BinaryConfiguration(binaryName: "tailwindcss-linux-x64", triple: "x86_64-unknown-linux-gnu"),
BinaryConfiguration(binaryName: "tailwindcss-macos-x64", triple: "x86_64-apple-darwin"),
BinaryConfiguration(binaryName: "tailwindcss-macos-arm64", triple: "aarch64-apple-darwin"),
// Since Swift 6.3 toolchain, the Apple Silicon triple changed from aarch64 to arm64.
BinaryConfiguration(binaryName: "tailwindcss-macos-arm64", triple: "arm64-apple-macosx"),
]
init(version: String, workDir: String, outputDir: String) {