tailwindcss-rails 2.0.23-x64-mingw32 → 2.0.25-x64-mingw32

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: 78ada11439f00a3b12df303e67358ea97b61a6db0a8c16aee9942c25ec69e65e
4
- data.tar.gz: ab04440113f89e2992a2249d762914dac7ee515bcfbd24613e4cde8b33ef05f5
3
+ metadata.gz: 3ebdaa280e28d4c08d90faea35ec7b6abf11ba7bab09e6804cbf2b0da60dd0f8
4
+ data.tar.gz: 4e230b68b0036bc1e2c144d05861a724018a8c954de8086395e1295d030e932c
5
5
  SHA512:
6
- metadata.gz: b5a674052e1976aec0035f7b3abbf629f0d47b7204ff129de5d10ccd6cee17a52f773ea7b278aed9b56f898699107b585e3e4260f360906c9b97b3a73b21ac59
7
- data.tar.gz: b583971f2ef888f2958bd755b6a5d528083a6b4b9ae6310fd8ce37d71af216494dff39c96186caf2c393e60048e790fdb0741bbbc8603ce7eb631a2be37dafaf
6
+ metadata.gz: 5cb45cba024ebd52559f428499c213de12e6df1798425919f94b09585c5b057a546613951f78ffc976f57e754b0db585c36016e94e112c6009f370d4088de8e4
7
+ data.tar.gz: 9a49226fbd4a637066ba556c20d35499f74bf1a9d4622a851ed52cdc620110071bb5d5a92065fcf91471b781d376982956a788565baab36c498bd88522a8baad
@@ -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-mingw32
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.