diff --git a/Package.swift b/Package.swift index f28ff15..d72f61b 100644 --- a/Package.swift +++ b/Package.swift @@ -25,8 +25,8 @@ let package = Package( .binaryTarget( name: "TailwindCSSCLI", url: - "https://github.com/laosb/SwiftTailwind/releases/download/1.1.0.test.0%2Btw.4.1.14/tailwindcss.artifactbundleindex", - checksum: "cdc10d3dbd0ad593d68df5564f22c5fc6ffe57facb30a8665d0be073e7fb9c66" + "https://github.com/laosb/SwiftTailwind/releases/download/1.1.0-test.2+tw.4.1.14/tailwindcss.artifactbundleindex", + checksum: "4462492d557c16c07a3c8c07980eea54e4460d925c1b9a097ad91f1c901440ec" ), .target( name: "SwiftTailwindExample", diff --git a/Sources/TailwindCSSCLIArtifactBundler/ArtifactBundleBuilder.swift b/Sources/TailwindCSSCLIArtifactBundler/ArtifactBundleBuilder.swift index 4141e9a..bc219f2 100644 --- a/Sources/TailwindCSSCLIArtifactBundler/ArtifactBundleBuilder.swift +++ b/Sources/TailwindCSSCLIArtifactBundler/ArtifactBundleBuilder.swift @@ -225,7 +225,7 @@ class ArtifactBundleBuilder { let index = ArtifactBundleIndex( schemaVersion: "1.0", - bundles: bundles + archives: bundles ) let encoder = JSONEncoder() diff --git a/Sources/TailwindCSSCLIArtifactBundler/Models.swift b/Sources/TailwindCSSCLIArtifactBundler/Models.swift index 6d74643..79214ad 100644 --- a/Sources/TailwindCSSCLIArtifactBundler/Models.swift +++ b/Sources/TailwindCSSCLIArtifactBundler/Models.swift @@ -28,7 +28,7 @@ struct ArtifactVariant: Codable { /// Represents the .artifactbundleindex file structure struct ArtifactBundleIndex: Codable { let schemaVersion: String - let bundles: [Bundle] + let archives: [Bundle] // The proposal says it's "bundles" but the actual implementation uses "archives" } struct Bundle: Codable {