Skip to content

Commit

Permalink
Merge pull request #383 from rails/flavorjones-dep-tailwind-3.4.7
Browse files Browse the repository at this point in the history
dep: tailwind 3.4.7
  • Loading branch information
flavorjones committed Jul 27, 2024
2 parents 7c3ebd1 + 1446f62 commit d781284
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/tailwindcss/upstream.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Tailwindcss
# constants describing the upstream tailwindcss project
module Upstream
VERSION = "v3.4.6"
VERSION = "v3.4.7"

# rubygems platform name => upstream release filename
NATIVE_PLATFORMS = {
Expand Down
6 changes: 6 additions & 0 deletions package/tailwindcss-v3.4.7-checksums.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
8f8b5cd32fc35843ec24bbcdb214e972df6a9c485bf4d4fd049140fbcc766bcc tailwindcss-macos-x64
0eda3bc8fe90506b7b9e5cb930312042730b76a7f18026d19414d48fbb3100ed tailwindcss-macos-arm64
3c2321e66718f39e48388707ce8b587946338f82ef3d636c8ee19670514d3394 tailwindcss-linux-x64
4146a6f534fffb27f95de9926d7806a6e432eeb7e55cb8850a57c4e062689c2b tailwindcss-linux-arm64
85c4c71618f0bfcdb0edf246ed6ee394a7addb8af34ed7dbdce9298279243994 tailwindcss-linux-armv7
e6891c3d181314b7d78382fe93121ff8957a9dbb1132a47afb064c0ed1f906e4 tailwindcss-windows-x64.exe
8 changes: 6 additions & 2 deletions rakelib/package.rake
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,12 @@ end

desc "Validate checksums for tailwindcss binaries"
task "check" => exepaths do
sha_filename = "sha256sums.txt"
sha_url = tailwindcss_download_url(sha_filename)
sha_filename = File.absolute_path("../package/tailwindcss-#{Tailwindcss::Upstream::VERSION}-checksums.txt", __dir__)
sha_url = if File.exist?(sha_filename)
sha_filename
else
sha_url = tailwindcss_download_url("sha256sums.txt")
end
gemspec = TAILWINDCSS_RAILS_GEMSPEC

checksums = URI.open(sha_url).each_line.map do |line|
Expand Down

0 comments on commit d781284

Please sign in to comment.