tailwindcss-rails 2.0.23-x64-mingw-ucrt → 2.0.25-x64-mingw-ucrt

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a4a60a1fe600f3804d82b7ad9e4fc229958bff5b711de167ff06eb0fcb2f10c
4
- data.tar.gz: d8b006e19009f47579b0063c336dd3880efa7de1a1e9fd588a3bafe2dffa14ed
3
+ metadata.gz: 47a5df0eb4ce8abb696b833f0b31757ebf17a73f73e914f13cbd5dbfd718203f
4
+ data.tar.gz: 764107ba97ba12ecbcd39c13074e0328e599299b1c01c4181c30ce97aff8633d
5
5
  SHA512:
6
- metadata.gz: eef281e9ec1193f11ad92cca351dc60ad8b75bcb9ce3a71089ab66c01b7e8538174410d7df0ef1d2bfd71fb244670c774bffe61d6852379bac48376afc4b9096
7
- data.tar.gz: 17bfcc0e21f3ec4703596bf7fa89b6b79f597a1318ad4e62cb2d7b5409e456bb108986cef546c8191a48319dc5efece3b0f38cfdbed3fe2f8971d5f2a664f4e6
6
+ metadata.gz: ff057d7cd411cc04f9aa587c1634f5950ed4165e33b58e1071e60d673ba7834b292b7686d26b2a0020ca1f436e321bcef891199c340c66276e700c72767c90c1
7
+ data.tar.gz: f5f7fb06276280e09aef72f9148e8b9605c8fdf34f35f9d3af7058183e2965824b08ace9b77dd1a2d77f5b8efb486fc7dd1dd7b0f8735950e5f16c42d2f14850
@@ -18,5 +18,7 @@ module.exports = {
18
18
  require('@tailwindcss/forms'),
19
19
  require('@tailwindcss/aspect-ratio'),
20
20
  require('@tailwindcss/typography'),
21
+ require('@tailwindcss/line-clamp'),
22
+ require('@tailwindcss/container-queries'),
21
23
  ]
22
24
  }
@@ -62,7 +62,7 @@ module Tailwindcss
62
62
  "-o", Rails.root.join("app/assets/builds/tailwind.css").to_s,
63
63
  "-c", Rails.root.join("config/tailwind.config.js").to_s,
64
64
  ].tap do |command|
65
- command << "--minify" unless debug
65
+ command << "--minify" unless (debug || rails_css_compressor?)
66
66
  end
67
67
  end
68
68
 
@@ -72,6 +72,10 @@ module Tailwindcss
72
72
  command << "-p" if poll
73
73
  end
74
74
  end
75
+
76
+ def rails_css_compressor?
77
+ defined?(Rails) && Rails&.application&.config&.assets&.css_compressor.present?
78
+ end
75
79
  end
76
80
  end
77
81
  end
@@ -1,3 +1,3 @@
1
1
  module Tailwindcss
2
- VERSION = "2.0.23"
2
+ VERSION = "2.0.25"
3
3
  end
data/lib/tasks/build.rake CHANGED
@@ -1,6 +1,6 @@
1
1
  namespace :tailwindcss do
2
2
  desc "Build your Tailwind CSS"
3
- task :build do |_, args|
3
+ task build: :environment do |_, args|
4
4
  debug = args.extras.include?("debug")
5
5
  command = Tailwindcss::Commands.compile_command(debug: debug)
6
6
  puts command.inspect if args.extras.include?("verbose")
@@ -8,7 +8,7 @@ namespace :tailwindcss do
8
8
  end
9
9
 
10
10
  desc "Watch and build your Tailwind CSS on file changes"
11
- task :watch do |_, args|
11
+ task watch: :environment do |_, args|
12
12
  debug = args.extras.include?("debug")
13
13
  poll = args.extras.include?("poll")
14
14
  command = Tailwindcss::Commands.watch_command(debug: debug, poll: poll)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tailwindcss-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.23
4
+ version: 2.0.25
5
5
  platform: x64-mingw-ucrt
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-02-19 00:00:00.000000000 Z
11
+ date: 2023-03-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -24,6 +24,7 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: 6.0.0
27
+ force_ruby_platform: false
27
28
  description:
28
29
  email: david@loudthinking.com
29
30
  executables:
@@ -100,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
100
101
  - !ruby/object:Gem::Version
101
102
  version: '0'
102
103
  requirements: []
103
- rubygems_version: 3.4.1
104
+ rubygems_version: 3.4.6
104
105
  signing_key:
105
106
  specification_version: 4
106
107
  summary: Integrate Tailwind CSS with the asset pipeline in Rails.