Skip to content

Commit d781284

Browse files
authored
Merge pull request #383 from rails/flavorjones-dep-tailwind-3.4.7
dep: tailwind 3.4.7
2 parents 7c3ebd1 + 1446f62 commit d781284

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

lib/tailwindcss/upstream.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Tailwindcss
22
# constants describing the upstream tailwindcss project
33
module Upstream
4-
VERSION = "v3.4.6"
4+
VERSION = "v3.4.7"
55

66
# rubygems platform name => upstream release filename
77
NATIVE_PLATFORMS = {
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
8f8b5cd32fc35843ec24bbcdb214e972df6a9c485bf4d4fd049140fbcc766bcc tailwindcss-macos-x64
2+
0eda3bc8fe90506b7b9e5cb930312042730b76a7f18026d19414d48fbb3100ed tailwindcss-macos-arm64
3+
3c2321e66718f39e48388707ce8b587946338f82ef3d636c8ee19670514d3394 tailwindcss-linux-x64
4+
4146a6f534fffb27f95de9926d7806a6e432eeb7e55cb8850a57c4e062689c2b tailwindcss-linux-arm64
5+
85c4c71618f0bfcdb0edf246ed6ee394a7addb8af34ed7dbdce9298279243994 tailwindcss-linux-armv7
6+
e6891c3d181314b7d78382fe93121ff8957a9dbb1132a47afb064c0ed1f906e4 tailwindcss-windows-x64.exe

rakelib/package.rake

+6-2
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,12 @@ end
115115

116116
desc "Validate checksums for tailwindcss binaries"
117117
task "check" => exepaths do
118-
sha_filename = "sha256sums.txt"
119-
sha_url = tailwindcss_download_url(sha_filename)
118+
sha_filename = File.absolute_path("../package/tailwindcss-#{Tailwindcss::Upstream::VERSION}-checksums.txt", __dir__)
119+
sha_url = if File.exist?(sha_filename)
120+
sha_filename
121+
else
122+
sha_url = tailwindcss_download_url("sha256sums.txt")
123+
end
120124
gemspec = TAILWINDCSS_RAILS_GEMSPEC
121125

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

0 commit comments

Comments
 (0)